Spaces:
Sleeping
Sleeping
Kikirilkov
commited on
Commit
•
deeed25
1
Parent(s):
722dd3b
Update app.py
Browse files
app.py
CHANGED
@@ -24,11 +24,11 @@ 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(lines=2, placeholder="
|
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 |
],
|
31 |
-
outputs=gr.Audio(type="filepath", label="
|
32 |
-
title="
|
33 |
|
34 |
iface.launch()
|
|
|
24 |
return "output.wav"
|
25 |
|
26 |
iface = gr.Interface(fn=voice_clone,
|
27 |
+
inputs=[gr.Textbox(lines=2, placeholder="Enter the text...", label="Text"),
|
28 |
+
gr.Audio(type="filepath", label="Upload audio file"),
|
29 |
+
gr.Radio(['ru', 'en', 'zh-cn', 'ja', 'de', 'fr', 'it', 'pt', 'pl', 'tr', 'ko', 'nl', 'cs', 'ar', 'es', 'hu'], label="language"),
|
30 |
],
|
31 |
+
outputs=gr.Audio(type="filepath", label="Generated audio file"),
|
32 |
+
title="Voice Cloning")
|
33 |
|
34 |
iface.launch()
|