Spaces:
Runtime error
Runtime error
Commit
·
d22959a
1
Parent(s):
e4b5e61
Update source
Browse files- .gitignore +1 -0
- app.py +5 -5
- model/config.json +1 -0
- requirements.txt +1 -1
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
./venv
|
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
import gradio as gr
|
2 |
from TTS.config import load_config
|
3 |
from TTS.utils.manage import ModelManager
|
4 |
from TTS.utils.synthesizer import Synthesizer
|
@@ -24,9 +24,9 @@ def run_tts(text):
|
|
24 |
|
25 |
return wav
|
26 |
|
27 |
-
def greet(name):
|
28 |
-
return "Hello " + name + "!!"
|
29 |
|
30 |
|
31 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="audio")
|
32 |
-
iface.launch()
|
|
|
1 |
+
#import gradio as gr
|
2 |
from TTS.config import load_config
|
3 |
from TTS.utils.manage import ModelManager
|
4 |
from TTS.utils.synthesizer import Synthesizer
|
|
|
24 |
|
25 |
return wav
|
26 |
|
27 |
+
#def greet(name):
|
28 |
+
# return "Hello " + name + "!!"
|
29 |
|
30 |
|
31 |
+
#iface = gr.Interface(fn=greet, inputs="text", outputs="audio")
|
32 |
+
#iface.launch()
|
model/config.json
CHANGED
@@ -87,6 +87,7 @@
|
|
87 |
"stats_path": null
|
88 |
},
|
89 |
"use_phonemes": true,
|
|
|
90 |
"phoneme_language": "es",
|
91 |
"compute_input_seq_cache": true,
|
92 |
"text_cleaner": "spanish_cleaners",
|
|
|
87 |
"stats_path": null
|
88 |
},
|
89 |
"use_phonemes": true,
|
90 |
+
"phonemizer": "espeak-ng",
|
91 |
"phoneme_language": "es",
|
92 |
"compute_input_seq_cache": true,
|
93 |
"text_cleaner": "spanish_cleaners",
|
requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
wheel
|
2 |
-
git+https://github.com/coqui-ai
|
|
|
1 |
wheel
|
2 |
+
git+https://github.com/daniel-dona/coqui-ai-TTS
|