Update app.py
Browse files
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 = gr.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(value = None, label="Response Voice Player", show_label=True, visible=False)
|
45 |
|
46 |
btn.click(generate_audio, [inp_text], out_audio)
|
47 |
|