Spaces:
Runtime error
Runtime error
Create app.py
Browse files
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()
|