Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -164,9 +164,11 @@ with gr.Blocks(theme=get_theme(), title="DeepFakeAI 1.0.0") as ui:
|
|
| 164 |
skip_audio = gr.Checkbox(label="SKIP AUDIO")
|
| 165 |
keep_fps = gr.Checkbox(label="KEEP FPS")
|
| 166 |
keep_temp = gr.Checkbox(label="KEEP TEMP")
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
|
|
|
|
|
|
| 170 |
clear_video_button.add(video_output)
|
| 171 |
video_button.click(
|
| 172 |
run,
|
|
|
|
| 164 |
skip_audio = gr.Checkbox(label="SKIP AUDIO")
|
| 165 |
keep_fps = gr.Checkbox(label="KEEP FPS")
|
| 166 |
keep_temp = gr.Checkbox(label="KEEP TEMP")
|
| 167 |
+
with gr.Row(scale=2):
|
| 168 |
+
clear_video_button = gr.ClearButton(value="CLEAR")
|
| 169 |
+
video_button = gr.Button("START")
|
| 170 |
+
with gr.Row():
|
| 171 |
+
video_output = gr.Video(label="OUTPUT", height=500)
|
| 172 |
clear_video_button.add(video_output)
|
| 173 |
video_button.click(
|
| 174 |
run,
|