mboushaba commited on
Commit
0d6f6f4
·
verified ·
1 Parent(s): b02a9f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -10,8 +10,10 @@ def speech(text, audio):
10
 
11
  interface = gr.Interface(
12
  fn = speech,
13
- inputs = [gr.Textbox(placeholder = "Your text to speech here"),
14
- gr.Audio(sources = ["microphone"], type = "filepath")],
 
 
15
  outputs = [gr.Audio(label = "File path")]
16
  , allow_flagging = "never")
17
 
 
10
 
11
  interface = gr.Interface(
12
  fn = speech,
13
+ title = "🎤Voice cloner",
14
+ description = "Record your voice or any other voice, input the text that you want to be spoken using the reference voice and voilà !",
15
+ inputs = [gr.Textbox(label= "Text to speak", placeholder = "Your text to speech here"),
16
+ gr.Audio(label= "Audio to clone", sources = ["microphone"], type = "filepath")],
17
  outputs = [gr.Audio(label = "File path")]
18
  , allow_flagging = "never")
19