Kikirilkov commited on
Commit
e06517d
1 Parent(s): 543bb48

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -24,7 +24,9 @@ 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", 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
 
 
24
  return "output.wav"
25
 
26
  iface = gr.Interface(fn=voice_clone,
27
+ inputs=[gr.Textbox(lines=2, placeholder="Введите текст, который хотите преобразовать...", label="Введите текст"),
28
+ gr.Audio(type="filepath", label="Загрузить аудиофайл"),
29
+ gr.Radio(['ru', 'en', 'zh-cn', 'ja', 'de', 'fr', 'it', 'pt', 'pl', 'tr', 'ko', 'nl', 'cs', 'ar', 'es', 'hu'], label="Выбрать язык")],
30
  outputs=gr.Audio(type="filepath", label="Сгенерированный аудиофайл"),
31
  title="Голосовое клонированние")
32