SoulAbi commited on
Commit
415e0ad
1 Parent(s): ae19a35

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import tempfile
2
+ import gradio as gr
3
+ from neon_tts_plugin_coqui import CoquiTTS
4
+
5
+ LANGUAGES = list(CoquiTTS.langs.keys())
6
+ coquiTTS = CoquiTTS()
7
+
8
+ def tts(text: str, language: str):
9
+ with tempfile.NamedTemporaryFile(suffix=".wav", delete=False) as fp:
10
+ coquiTTS.get_tts(text, fp, speaker = {"language" : language})
11
+ return fp.name
12
+
13
+ inputs = [gr.Textbox(label="Input", value="", max_lines=15),
14
+ gr.Radio(label="Language", choices=LANGUAGES, value="en")]
15
+ outputs = gr.Audio(label="Output")
16
+
17
+ run = gr.Interface(fn=tts, inputs=inputs, outputs=outputs)
18
+
19
+ run.launch()