Spaces:
Sleeping
Sleeping
Commit
·
03b0850
1
Parent(s):
efc4bc7
Remove commented-out example inputs in app.py for cleaner code.
Browse files
app.py
CHANGED
@@ -123,14 +123,14 @@ with gr.Blocks(title="SoundImage") as demo:
|
|
123 |
with gr.Column():
|
124 |
video_output = gr.Video(label="Output Video")
|
125 |
|
126 |
-
gr.Examples(
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
)
|
134 |
|
135 |
process_btn.click(
|
136 |
fn=process_video,
|
|
|
123 |
with gr.Column():
|
124 |
video_output = gr.Video(label="Output Video")
|
125 |
|
126 |
+
# gr.Examples(
|
127 |
+
# examples=[
|
128 |
+
# ["assets/demo1_video.mp4", "assets/demo1_audio.wav"],
|
129 |
+
# ["assets/demo2_video.mp4", "assets/demo2_audio.wav"],
|
130 |
+
# ["assets/demo3_video.mp4", "assets/demo3_audio.wav"],
|
131 |
+
# ],
|
132 |
+
# inputs=[video_input, audio_input],
|
133 |
+
# )
|
134 |
|
135 |
process_btn.click(
|
136 |
fn=process_video,
|