Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,9 +8,6 @@ zh_tts = TTS(model_name="tts_models/zh-CN/baker/tacotron2-DDC-GST", progress_bar
|
|
8 |
de_tts = TTS(model_name="tts_models/de/thorsten/vits", gpu=False)
|
9 |
es_tts = TTS(model_name="tts_models/es/mai/tacotron2-DDC", progress_bar=False, gpu=False)
|
10 |
|
11 |
-
css = """
|
12 |
-
#warning .feedback textarea {border-color : #f20905 !important}
|
13 |
-
"""
|
14 |
|
15 |
def text_to_speech(text: str, speaker_wav, speaker_wav_file):
|
16 |
if len(text) > 0:
|
|
|
8 |
de_tts = TTS(model_name="tts_models/de/thorsten/vits", gpu=False)
|
9 |
es_tts = TTS(model_name="tts_models/es/mai/tacotron2-DDC", progress_bar=False, gpu=False)
|
10 |
|
|
|
|
|
|
|
11 |
|
12 |
def text_to_speech(text: str, speaker_wav, speaker_wav_file):
|
13 |
if len(text) > 0:
|