goldpulpy commited on
Commit
5bd9a13
1 Parent(s): df53d62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,6 +17,6 @@ def predict(video, audio):
17
  return output_file
18
 
19
 
20
- demo = gr.Interface(fn=predict, inputs=[gradio.Video(label='Source image/video'),gradio.Audio(type='filepath', label='Target Audio')], outputs=[gradio.Video.update(label='Output file')])
21
  demo.launch()
22
 
 
17
  return output_file
18
 
19
 
20
+ demo = gr.Interface(fn=predict, inputs=[gradio.Video(label='Source image/video'),gradio.Audio(type='filepath', label='Target Audio')], outputs=[gradio.Video()])
21
  demo.launch()
22