Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ def convert_text_to_speech(parrafo, model):
|
|
19 |
parrafo_filtrado = filter_text(parrafo)
|
20 |
bundle_dir = os.path.abspath(os.path.dirname(__file__))
|
21 |
print("Cargando carpeta Modelos desde:", os.path.join(bundle_dir, '.'))
|
22 |
-
random_name = '
|
23 |
output_file = os.path.join('.', random_name)
|
24 |
piper_exe = '/app/piper'
|
25 |
print("Ejecutando piper.exe desde:", piper_exe)
|
|
|
19 |
parrafo_filtrado = filter_text(parrafo)
|
20 |
bundle_dir = os.path.abspath(os.path.dirname(__file__))
|
21 |
print("Cargando carpeta Modelos desde:", os.path.join(bundle_dir, '.'))
|
22 |
+
random_name = '.'.join(random.choices(string.ascii_letters + string.digits, k=8)) + '.wav'
|
23 |
output_file = os.path.join('.', random_name)
|
24 |
piper_exe = '/app/piper'
|
25 |
print("Ejecutando piper.exe desde:", piper_exe)
|