Spaces:
Running
Running
Kikirilkov
commited on
Commit
•
543bb48
1
Parent(s):
0b96bf5
Update app.py
Browse files
app.py
CHANGED
@@ -24,8 +24,8 @@ def voice_clone(text: str, speaker_wav: str, language: str):
|
|
24 |
return "output.wav"
|
25 |
|
26 |
iface = gr.Interface(fn=voice_clone,
|
27 |
-
inputs=["text", gr.Audio(type="filepath"), gr.Radio(['ru', 'en', 'zh-cn', 'ja', 'de', 'fr', 'it', 'pt', 'pl', 'tr', 'ko', 'nl', 'cs', 'ar', 'es', 'hu'], label="
|
28 |
-
outputs=gr.Audio(type="filepath"),
|
29 |
-
title="
|
30 |
|
31 |
iface.launch()
|
|
|
24 |
return "output.wav"
|
25 |
|
26 |
iface = gr.Interface(fn=voice_clone,
|
27 |
+
inputs=["text", gr.Audio(type="filepath", label="Загрузить аудиофайл"), gr.Radio(['ru', 'en', 'zh-cn', 'ja', 'de', 'fr', 'it', 'pt', 'pl', 'tr', 'ko', 'nl', 'cs', 'ar', 'es', 'hu'], label="Выбрать язык")],
|
28 |
+
outputs=gr.Audio(type="filepath", label="Сгенерированный аудиофайл"),
|
29 |
+
title="Голосовое клонированние")
|
30 |
|
31 |
iface.launch()
|