Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
b1e9976
1
Parent(s):
be0c819
change place submit button
Browse files
app.py
CHANGED
@@ -128,7 +128,6 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
|
128 |
with gr.Row():
|
129 |
with gr.Column():
|
130 |
input_video = gr.Video(label="Input Video")
|
131 |
-
submit = gr.Button(variant="primary")
|
132 |
with gr.Column():
|
133 |
output_video = gr.Video(label="Output Video")
|
134 |
actual_fps = gr.Markdown("", visible=False)
|
@@ -153,6 +152,9 @@ with gr.Blocks(theme=gr.themes.Soft(), css=css) as demo:
|
|
153 |
value=640,
|
154 |
step=10,
|
155 |
)
|
|
|
|
|
|
|
156 |
example = gr.Examples(
|
157 |
examples=[
|
158 |
["./football.mp4", 0.3, "person, ball, shoe", 640],
|
|
|
128 |
with gr.Row():
|
129 |
with gr.Column():
|
130 |
input_video = gr.Video(label="Input Video")
|
|
|
131 |
with gr.Column():
|
132 |
output_video = gr.Video(label="Output Video")
|
133 |
actual_fps = gr.Markdown("", visible=False)
|
|
|
152 |
value=640,
|
153 |
step=10,
|
154 |
)
|
155 |
+
with gr.Row():
|
156 |
+
submit = gr.Button(variant="primary")
|
157 |
+
|
158 |
example = gr.Examples(
|
159 |
examples=[
|
160 |
["./football.mp4", 0.3, "person, ball, shoe", 640],
|