Nymbo commited on
Commit
a7507da
1 Parent(s): abe3b09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,6 +26,6 @@ def voice_clone(text: str, speaker_wav: str, language: str):
26
  iface = gr.Interface(fn=voice_clone,
27
  inputs=[gr.Textbox(label="Input the text. 300 symbols are recommended", max_lines=3), gr.Audio(type="filepath", label="Upload audio file"), gr.Radio(label="Language", choices=["ru", "en", "zh-cn", "ja", "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 by Shadhil")
30
 
31
  iface.launch()
 
26
  iface = gr.Interface(fn=voice_clone,
27
  inputs=[gr.Textbox(label="Input the text. 300 symbols are recommended", max_lines=3), gr.Audio(type="filepath", label="Upload audio file"), gr.Radio(label="Language", choices=["ru", "en", "zh-cn", "ja", "de", "fr", "it", "pt", "pl", "tr", "ko", "nl", "cs", "ar", "es", "hu"], value="en")],
28
  outputs=gr.Audio(type="filepath", label="Output"),
29
+ title="Simple Voice Cloning - XTTS v2")
30
 
31
  iface.launch()