Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ def synthesize_speech(text):
|
|
38 |
# Using Gradio Blocks
|
39 |
with gr.Blocks(theme=gr.themes.Base()) as blocks:
|
40 |
gr.Markdown("# Text to Speech Synthesizer")
|
41 |
-
gr.Markdown("Enter text to synthesize it into speech using
|
42 |
input_text = gr.Textbox(label="Input Text")
|
43 |
output_audio = gr.Audio(label="Synthesized Speech", type="numpy")
|
44 |
output_text = gr.Textbox(label="Output Text", visible=False) # This is the new text output component
|
|
|
38 |
# Using Gradio Blocks
|
39 |
with gr.Blocks(theme=gr.themes.Base()) as blocks:
|
40 |
gr.Markdown("# Text to Speech Synthesizer")
|
41 |
+
gr.Markdown("Enter text to synthesize it into speech using models from the State Library of Queensland's collection using Piper.")
|
42 |
input_text = gr.Textbox(label="Input Text")
|
43 |
output_audio = gr.Audio(label="Synthesized Speech", type="numpy")
|
44 |
output_text = gr.Textbox(label="Output Text", visible=False) # This is the new text output component
|