DLI-SLQ commited on
Commit
581e370
1 Parent(s): 70c66a8

hide footer

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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")