Update app.py
Browse files
app.py
CHANGED
@@ -158,7 +158,7 @@ with gr.Blocks() as demo:
|
|
158 |
with gr.Column():
|
159 |
url_input = gr.Textbox(value="./examples/streetview.mp4", label="URL")
|
160 |
with gr.Row():
|
161 |
-
interpolation = gr.
|
162 |
fps_output = gr.Radio([1, 6, 12, 24, 25], label="FPS output", value=1)
|
163 |
submit_btn = gr.Button("Submit")
|
164 |
|
@@ -167,7 +167,7 @@ with gr.Blocks() as demo:
|
|
167 |
file_output = gr.File()
|
168 |
|
169 |
gr.Examples(
|
170 |
-
examples=[["./examples/streetview.mp4",
|
171 |
fn=infer,
|
172 |
inputs=[url_input,interpolation,fps_output],
|
173 |
outputs=[video_output,file_output],
|
|
|
158 |
with gr.Column():
|
159 |
url_input = gr.Textbox(value="./examples/streetview.mp4", label="URL")
|
160 |
with gr.Row():
|
161 |
+
interpolation = gr.Radio([1, 2, 4, 8, 16, 32], value=4, label="Interpolation Steps")
|
162 |
fps_output = gr.Radio([1, 6, 12, 24, 25], label="FPS output", value=1)
|
163 |
submit_btn = gr.Button("Submit")
|
164 |
|
|
|
167 |
file_output = gr.File()
|
168 |
|
169 |
gr.Examples(
|
170 |
+
examples=[["./examples/streetview.mp4", 4, 1]],
|
171 |
fn=infer,
|
172 |
inputs=[url_input,interpolation,fps_output],
|
173 |
outputs=[video_output,file_output],
|