Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def synthesis(audio_file: tempfile._TemporaryFileWrapper, text: str, ar_ckpt: st
|
|
23 |
|
24 |
synthesis_interface = gr.Interface(synthesis,
|
25 |
inputs={"audio_file": gr.File(file_count="multiple"), "text": "text", "ar_ckpt": "text", "nar_ckpt": "text"},
|
26 |
-
outputs=gr.Audio(),
|
27 |
live=True,
|
28 |
capture_session=True)
|
29 |
synthesis_interface.launch()
|
|
|
23 |
|
24 |
synthesis_interface = gr.Interface(synthesis,
|
25 |
inputs={"audio_file": gr.File(file_count="multiple"), "text": "text", "ar_ckpt": "text", "nar_ckpt": "text"},
|
26 |
+
outputs=gr.Audio("output.wav"),
|
27 |
live=True,
|
28 |
capture_session=True)
|
29 |
synthesis_interface.launch()
|