disable download
Browse files
app.py
CHANGED
@@ -53,6 +53,7 @@ with gr.Blocks(theme=gr.themes.Base()) as blocks:
|
|
53 |
output_audio = gr.Audio(label="Synthesized Speech", type="numpy")
|
54 |
output_text = gr.Textbox(label="Output Text", visible=False)
|
55 |
submit_button = gr.Button("Synthesize")
|
|
|
56 |
|
57 |
def process_and_output(text):
|
58 |
audio, message = synthesize_speech(text)
|
|
|
53 |
output_audio = gr.Audio(label="Synthesized Speech", type="numpy")
|
54 |
output_text = gr.Textbox(label="Output Text", visible=False)
|
55 |
submit_button = gr.Button("Synthesize")
|
56 |
+
show_download_button = False
|
57 |
|
58 |
def process_and_output(text):
|
59 |
audio, message = synthesize_speech(text)
|