Nick088 commited on
Commit
35e943b
·
verified ·
1 Parent(s): e6c2cc9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ language_tld_map = {
47
  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, type="value")],
51
  outputs=[gr.Audio(label="Audio")],
52
  allow_flagging="never")
53
 
 
47
  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