Spaces:
Running
Running
Kikirilkov
commited on
Commit
•
94e9a09
1
Parent(s):
8b64e20
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=[gr.Textbox(label="Input the text. 300 symbols
|
28 |
outputs=gr.Audio(type="filepath", label="Output"),
|
29 |
-
title="Voice Cloning
|
30 |
|
31 |
iface.launch()
|
|
|
24 |
return "output.wav"
|
25 |
|
26 |
iface = gr.Interface(fn=voice_clone,
|
27 |
+
inputs=[gr.Textbox(label="Input the text.The limit is 300 symbols", max_lines=3), gr.Audio(type="filepath", label="Upload audio file"), gr.Radio(label="Language", choices=["ru", "en", "zh-cn", "de", "fr", "it", "pt", "pl", "tr", "ko", "nl", "cs", "ar", "es", "hu"], value="en")],
|
28 |
outputs=gr.Audio(type="filepath", label="Output"),
|
29 |
+
title="Voice Cloning")
|
30 |
|
31 |
iface.launch()
|