Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ with gr.Blocks(css=css) as demo:
|
|
66 |
""")
|
67 |
|
68 |
with gr.Row():
|
69 |
-
with gr.Column():
|
70 |
with gr.Row():
|
71 |
|
72 |
gr.Examples(
|
@@ -108,7 +108,7 @@ with gr.Blocks(css=css) as demo:
|
|
108 |
flag_crop_driving_video_input = gr.Checkbox(value=False, label="do crop (driving video)")
|
109 |
with gr.Row():
|
110 |
process_button_source_animation = gr.Button("🚀 Animate video", variant="primary")
|
111 |
-
with gr.Column():
|
112 |
output_video1 = gr.Video(label="The animated video in the original image space")
|
113 |
output_video_concat1 = gr.Video(label="The animated video")
|
114 |
|
|
|
66 |
""")
|
67 |
|
68 |
with gr.Row():
|
69 |
+
with gr.Column(scale=1):
|
70 |
with gr.Row():
|
71 |
|
72 |
gr.Examples(
|
|
|
108 |
flag_crop_driving_video_input = gr.Checkbox(value=False, label="do crop (driving video)")
|
109 |
with gr.Row():
|
110 |
process_button_source_animation = gr.Button("🚀 Animate video", variant="primary")
|
111 |
+
with gr.Column(scale=2):
|
112 |
output_video1 = gr.Video(label="The animated video in the original image space")
|
113 |
output_video_concat1 = gr.Video(label="The animated video")
|
114 |
|