Update app.py
Browse files
app.py
CHANGED
@@ -5,4 +5,7 @@ def inference(text,audio):
|
|
5 |
os.system('tts --text "'+text+'" --model_name tts_models/multilingual/multi-dataset/your_tts --speaker_wav '+audio+' --language_idx "en"')
|
6 |
return "tts_output.wav"
|
7 |
|
8 |
-
|
|
|
|
|
|
|
|
5 |
os.system('tts --text "'+text+'" --model_name tts_models/multilingual/multi-dataset/your_tts --speaker_wav '+audio+' --language_idx "en"')
|
6 |
return "tts_output.wav"
|
7 |
|
8 |
+
title="YourTTS"
|
9 |
+
description="## Gradio Demo for [Edresson/YourTTS](https://github.com/edresson/yourtts), to use it add your text and audio file"
|
10 |
+
examples=[['This is a test','test.wav']]
|
11 |
+
gr.Interface(inference,["text",gr.Audio(type="filepath")],gr.Audio(type="filepath"),title=title,description=description,examples=examples).launch()
|