Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -203,10 +203,59 @@ with gr.Blocks() as demo:
|
|
203 |
placeholder="Escribe aquí tu texto..."
|
204 |
)
|
205 |
voz_seleccionada = gr.Dropdown(
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
procesar_btn = gr.Button("Generar Video")
|
211 |
video_output = gr.Video(label="Video Procesado")
|
212 |
|
|
|
203 |
placeholder="Escribe aquí tu texto..."
|
204 |
)
|
205 |
voz_seleccionada = gr.Dropdown(
|
206 |
+
label="Voz",
|
207 |
+
choices=[
|
208 |
+
"es-ES-AlvaroNeural", "es-MX-BeatrizNeural",
|
209 |
+
"es-ES-ElviraNeural", "es-MX-JavierNeural",
|
210 |
+
"es-AR-ElenaNeural", "es-AR-TomasNeural",
|
211 |
+
"es-CL-CatalinaNeural", "es-CL-LorenzoNeural",
|
212 |
+
"es-CO-SofiaNeural", "es-CO-GonzaloNeural",
|
213 |
+
"es-PE-CamilaNeural", "es-PE-AlexNeural",
|
214 |
+
"es-VE-MariaNeural", "es-VE-ManuelNeural",
|
215 |
+
"es-US-AlonsoNeural", "es-US-PalomaNeural",
|
216 |
+
"es-ES-AbrilNeural", "es-ES-DarioNeural",
|
217 |
+
"es-ES-HelenaRUS", "es-ES-LauraNeural",
|
218 |
+
"es-ES-PabloNeural", "es-ES-TriniNeural",
|
219 |
+
"en-US-AriaNeural", "en-US-GuyNeural",
|
220 |
+
"en-US-JennyNeural", "en-US-AmberNeural",
|
221 |
+
"en-US-AnaNeural", "en-US-AshleyNeural",
|
222 |
+
"en-US-BrandonNeural", "en-US-ChristopherNeural",
|
223 |
+
"en-US-CoraNeural", "en-US-DavisNeural",
|
224 |
+
"en-US-ElizabethNeural", "en-US-EricNeural",
|
225 |
+
"en-US-GinaNeural", "en-US-JacobNeural",
|
226 |
+
"en-US-JaneNeural", "en-US-JasonNeural",
|
227 |
+
"en-US-MichelleNeural", "en-US-MonicaNeural",
|
228 |
+
"en-US-SaraNeural", "en-US-SteffanNeural",
|
229 |
+
"en-US-TonyNeural", "en-US-YaraNeural",
|
230 |
+
"fr-FR-AlainNeural", "fr-FR-BrigitteNeural",
|
231 |
+
"fr-FR-CelesteNeural", "fr-FR-ClaudeNeural",
|
232 |
+
"fr-FR-CoralieNeural", "fr-FR-DeniseNeural",
|
233 |
+
"fr-FR-EloiseNeural", "fr-FR-HenriNeural",
|
234 |
+
"fr-FR-JacquelineNeural", "fr-FR-JeromeNeural",
|
235 |
+
"fr-FR-JosephineNeural", "fr-FR-MauriceNeural",
|
236 |
+
"fr-FR-YvesNeural", "fr-FR-YvetteNeural",
|
237 |
+
"de-DE-AmalaNeural", "de-DE-BerndNeural",
|
238 |
+
"de-DE-ChristophNeural", "de-DE-ConradNeural",
|
239 |
+
"de-DE-ElkeNeural", "de-DE-GiselaNeural",
|
240 |
+
"de-DE-KasperNeural", "de-DE-KatjaNeural",
|
241 |
+
"de-DE-KillianNeural", "de-DE-KlarissaNeural",
|
242 |
+
"de-DE-KlausNeural", "de-DE-LouisaNeural",
|
243 |
+
"de-DE-MajaNeural", "de-DE-RalfNeural",
|
244 |
+
"de-DE-TanjaNeural", "de-DE-ViktoriaNeural",
|
245 |
+
"it-IT-BenignoNeural", "it-IT-CalimeroNeural",
|
246 |
+
"it-IT-CataldoNeural", "it-IT-DiegoNeural",
|
247 |
+
"it-IT-ElsaNeural", "it-IT-FabiolaNeural",
|
248 |
+
"it-IT-GianniNeural", "it-IT-ImeldaNeural",
|
249 |
+
"it-IT-IrmaNeural", "it-IT-IsabellaNeural",
|
250 |
+
"it-IT-LisandroNeural", "it-IT-PalmiraNeural",
|
251 |
+
"it-IT-PierinaNeural", "it-IT-RinaldoNeural",
|
252 |
+
"ja-JP-AoiNeural", "ja-JP-DaichiNeural",
|
253 |
+
"ja-JP-HarukaNeural", "ja-JP-KeitaNeural",
|
254 |
+
"ja-JP-MayuNeural", "ja-JP-NanamiNeural",
|
255 |
+
"ja-JP-NaokiNeural", "ja-JP-ShioriNeural"
|
256 |
+
],
|
257 |
+
value="es-ES-AlvaroNeural"
|
258 |
+
)
|
259 |
procesar_btn = gr.Button("Generar Video")
|
260 |
video_output = gr.Video(label="Video Procesado")
|
261 |
|