Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
•
bfafe88
1
Parent(s):
971732b
Update app.py
Browse files
app.py
CHANGED
@@ -17,5 +17,5 @@ description = "Gradio demo for Wav2lip: Accurately Lip-syncing Videos In The Wil
|
|
17 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2008.10010' target='_blank'>A Lip Sync Expert Is All You Need for Speech to Lip Generation In The Wild</a> | <a href='https://github.com/PaddlePaddle/PaddleGAN/blob/develop/docs/en_US/tutorials/wav2lip.md' target='_blank'>Github Repo</a></p>"
|
18 |
examples=[['monatest.jpeg',"game.wav"]]
|
19 |
iface = gr.Interface(inference, [gr.inputs.Image(type="filepath"),gr.inputs.Audio(source="microphone", type="filepath")],
|
20 |
-
outputs=gr.outputs.Video(label="Output Video"),examples=examples,
|
21 |
-
iface.launch(
|
|
|
17 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2008.10010' target='_blank'>A Lip Sync Expert Is All You Need for Speech to Lip Generation In The Wild</a> | <a href='https://github.com/PaddlePaddle/PaddleGAN/blob/develop/docs/en_US/tutorials/wav2lip.md' target='_blank'>Github Repo</a></p>"
|
18 |
examples=[['monatest.jpeg',"game.wav"]]
|
19 |
iface = gr.Interface(inference, [gr.inputs.Image(type="filepath"),gr.inputs.Audio(source="microphone", type="filepath")],
|
20 |
+
outputs=gr.outputs.Video(label="Output Video"),examples=examples,title=title,article=article,description=description)
|
21 |
+
iface.launch(cache_examples=True,enable_queue=True)
|