VanYsa commited on
Commit
9920928
·
1 Parent(s): 788145a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ with gr.Blocks(css=css) as demo_blocks:
41
 
42
  #"Enter the text you would like to synthesise into speech. Amazing! One plus one is equal to two. \n The quick brown fox jumps over the lazy dog. \n 1. Mangoes \n 2. Fruits"
43
  with gr.Column():
44
- out_audio = []
45
 
46
  btn.click(generate_audio, [inp_text], out_audio)
47
 
 
41
 
42
  #"Enter the text you would like to synthesise into speech. Amazing! One plus one is equal to two. \n The quick brown fox jumps over the lazy dog. \n 1. Mangoes \n 2. Fruits"
43
  with gr.Column():
44
+ out_audio = gr.Audio(type="numpy", autoplay=True, label="Generated Audio - British Female Speaker", show_label=True, visible=True)
45
 
46
  btn.click(generate_audio, [inp_text], out_audio)
47