Spaces:
Running
on
Zero
Running
on
Zero
Update gradio_app.py
Browse files- gradio_app.py +7 -0
gradio_app.py
CHANGED
@@ -396,6 +396,13 @@ with gr.Blocks() as demo:
|
|
396 |
driven_audio = gr.Audio(label="Driven Audio")
|
397 |
submit_btn = gr.Button("Submit")
|
398 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
with gr.Column():
|
400 |
output_video = gr.Video(label="Output Video")
|
401 |
|
|
|
396 |
driven_audio = gr.Audio(label="Driven Audio")
|
397 |
submit_btn = gr.Button("Submit")
|
398 |
|
399 |
+
gr.Examples(
|
400 |
+
examples = [
|
401 |
+
["example/source_image/WDA_BenCardin1_000.png", "example/source_image/WDA_BenCardin1_000.wav"],
|
402 |
+
inputs = [source_image, driven_audio]
|
403 |
+
]
|
404 |
+
)
|
405 |
+
|
406 |
with gr.Column():
|
407 |
output_video = gr.Video(label="Output Video")
|
408 |
|