ankandrew
commited on
Commit
·
cd47744
1
Parent(s):
2e3ddd8
Minor fix
Browse files
app.py
CHANGED
@@ -84,7 +84,7 @@ with demo:
|
|
84 |
input_type = gr.Radio(["text", "image", "video"], label="Input Type")
|
85 |
text_input = gr.Textbox(lines=3, placeholder="Enter text...", visible=True)
|
86 |
image_input = gr.Image(type="filepath", visible=False)
|
87 |
-
video_input = gr.Video(
|
88 |
fps_input = gr.Slider(minimum=0.1, maximum=30.0, step=0.1, value=2.0, label="FPS", visible=False)
|
89 |
output = gr.Textbox(label="Output")
|
90 |
|
|
|
84 |
input_type = gr.Radio(["text", "image", "video"], label="Input Type")
|
85 |
text_input = gr.Textbox(lines=3, placeholder="Enter text...", visible=True)
|
86 |
image_input = gr.Image(type="filepath", visible=False)
|
87 |
+
video_input = gr.Video(visible=False)
|
88 |
fps_input = gr.Slider(minimum=0.1, maximum=30.0, step=0.1, value=2.0, label="FPS", visible=False)
|
89 |
output = gr.Textbox(label="Output")
|
90 |
|