aliabd HF staff commited on
Commit
56bb714
1 Parent(s): dcc13bd

Delete app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +0 -19
app.py DELETED
@@ -1,19 +0,0 @@
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=CoquiTTS.langs["en"]["sentence"], max_lines=3),
14
- gr.Radio(label="Language", choices=LANGUAGES, value="en")]
15
- outputs = gr.Audio(label="Output")
16
-
17
- demo = gr.Interface(fn=tts, inputs=inputs, outputs=outputs)
18
-
19
- demo.launch()