HappyElephant commited on
Commit
22cc11f
·
1 Parent(s): 545a7d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py CHANGED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from TTS.api import TTS
3
+
4
+ model_name = TTS.list_models()[0]
5
+ # Init TTS
6
+ tts = TTS(model_name)
7
+
8
+ def text_to_speech(text: str, speaker_wav, language: str):
9
+ # Use the 'speaker_wav' parameter to get the path of the uploaded audio file
10
+ tts.tts_to_file(text, speaker_wav=speaker_wav, language=language, file_path="output.wav")
11
+ return 'output.wav'
12
+
13
+ inputs = [gr.Textbox(label="Input", value="Hello!", max_lines=3),
14
+ gr.File(label="Speaker Wav", accept=".wav,.mp3"),
15
+ gr.Radio(label="Language", choices=tts.languages, value="en")]
16
+ outputs = gr.Audio(label="Output", type="filepath")
17
+
18
+ demo = gr.Interface(fn=text_to_speech, inputs=inputs, outputs=outputs)
19
+ demo.launch(debug=True)