NeoPy commited on
Commit
7c2fb67
·
verified ·
1 Parent(s): 285a5c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -48,7 +48,6 @@ iface = gr.Interface(fn=text_to_speech,
48
  inputs=[gr.Textbox(lines=10, label="Enter your text here:"),
49
  gr.Dropdown(choices=list(language_tld_map.keys()), label="Select Language & Accent:", value="English_United_Kingdom", type="value"),
50
  gr.Number(label="Pitch (0 = no variations, negative pitch makes it more masculine, + pitch makes it more feminine):", value=0)],
51
- outputs=[gr.Audio(label="Audio")],
52
- allow_flagging="never")
53
 
54
  iface.launch()
 
48
  inputs=[gr.Textbox(lines=10, label="Enter your text here:"),
49
  gr.Dropdown(choices=list(language_tld_map.keys()), label="Select Language & Accent:", value="English_United_Kingdom", type="value"),
50
  gr.Number(label="Pitch (0 = no variations, negative pitch makes it more masculine, + pitch makes it more feminine):", value=0)],
51
+ outputs=[gr.Audio(label="Audio")])
 
52
 
53
  iface.launch()