fffiloni commited on
Commit
c3d7a4d
·
verified ·
1 Parent(s): 3b88a56

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. 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