akhaliq HF staff commited on
Commit
7657a0a
1 Parent(s): b8e7dfe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
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
- gr.Interface(inference,["text",gr.Audio(type="filepath")],gr.Audio(type="filepath")).launch()
 
 
 
 
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()