Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ def synthesis(audio_file: tempfile._TemporaryFileWrapper, text: str, ar_ckpt: st
|
|
| 22 |
return output_audio
|
| 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 |
live=True,
|
| 27 |
capture_session=True,outputs="audio")
|
| 28 |
synthesis_interface.launch()
|
|
|
|
| 22 |
return output_audio
|
| 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 |
live=True,
|
| 27 |
capture_session=True,outputs="audio")
|
| 28 |
synthesis_interface.launch()
|