Update app.py
Browse files
app.py
CHANGED
@@ -159,7 +159,7 @@ with gr.Blocks() as demo:
|
|
159 |
gr.HTML(title)
|
160 |
with gr.Row():
|
161 |
with gr.Column():
|
162 |
-
url_input = gr.Textbox(value="./examples/
|
163 |
with gr.Row():
|
164 |
interpolation = gr.Slider(minimum=1, maximum=24, step=1, value=1, label="Interpolation Steps")
|
165 |
fps_output = gr.Radio([1, 6, 12, 24, 25], label="FPS output", value=1)
|
@@ -170,7 +170,7 @@ with gr.Blocks() as demo:
|
|
170 |
file_output = gr.File()
|
171 |
|
172 |
gr.Examples(
|
173 |
-
examples=[["./examples/
|
174 |
fn=infer,
|
175 |
inputs=[url_input,interpolation,fps_output],
|
176 |
outputs=[video_output,file_output],
|
|
|
159 |
gr.HTML(title)
|
160 |
with gr.Row():
|
161 |
with gr.Column():
|
162 |
+
url_input = gr.Textbox(value="./examples/streetview.mp4", label="URL")
|
163 |
with gr.Row():
|
164 |
interpolation = gr.Slider(minimum=1, maximum=24, step=1, value=1, label="Interpolation Steps")
|
165 |
fps_output = gr.Radio([1, 6, 12, 24, 25], label="FPS output", value=1)
|
|
|
170 |
file_output = gr.File()
|
171 |
|
172 |
gr.Examples(
|
173 |
+
examples=[["./examples/streetview.mp4", 1, 1]],
|
174 |
fn=infer,
|
175 |
inputs=[url_input,interpolation,fps_output],
|
176 |
outputs=[video_output,file_output],
|