hide footer
Browse files
app.py
CHANGED
@@ -46,7 +46,7 @@ def synthesize_speech(text):
|
|
46 |
return audio_data.tobytes(), None
|
47 |
|
48 |
# Gradio Interface
|
49 |
-
with gr.Blocks(theme=gr.themes.Base()) as blocks:
|
50 |
gr.Markdown("# Text to Speech Synthesizer")
|
51 |
gr.Markdown("Enter text to synthesize it into speech using models from the State Library of Queensland's collection using Piper.")
|
52 |
input_text = gr.Textbox(label="Input Text")
|
|
|
46 |
return audio_data.tobytes(), None
|
47 |
|
48 |
# Gradio Interface
|
49 |
+
with gr.Blocks(theme=gr.themes.Base(),css="footer {visibility: hidden}") as blocks:
|
50 |
gr.Markdown("# Text to Speech Synthesizer")
|
51 |
gr.Markdown("Enter text to synthesize it into speech using models from the State Library of Queensland's collection using Piper.")
|
52 |
input_text = gr.Textbox(label="Input Text")
|