Axelottle commited on
Commit
4bca212
·
1 Parent(s): a5eccfe

Center description, set output textbox to non-interactive

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -279,9 +279,9 @@ with gr.Blocks(theme=theme) as demo:
279
 
280
  gr.Markdown(
281
  '''
282
- <h1 align="center">SnipSnap Summarizer</h1>
283
 
284
- Welcome to SnipSnap! This is an educational video transcript summarizer. Input a YouTube URL to get started.
285
  '''
286
  )
287
 
@@ -298,7 +298,7 @@ with gr.Blocks(theme=theme) as demo:
298
  video_preview = gr.HTML(label="Video Preview")
299
 
300
  with gr.Column():
301
- summary_output = gr.Textbox(label="Summary", show_copy_button=True)
302
  tts_btn = gr.Button(variant="primary", value="Text-to-Speech")
303
  summary_tts = gr.Audio(label="Audio", interactive=False)
304
 
 
279
 
280
  gr.Markdown(
281
  '''
282
+ <h1 align="center">Educational Video Transcript Summarizer</h1>
283
 
284
+ <h6 align="center">Welcome to SnipSnap! Input a YouTube URL to get started.</h6>
285
  '''
286
  )
287
 
 
298
  video_preview = gr.HTML(label="Video Preview")
299
 
300
  with gr.Column():
301
+ summary_output = gr.Textbox(label="Summary", interactive=False, show_copy_button=True)
302
  tts_btn = gr.Button(variant="primary", value="Text-to-Speech")
303
  summary_tts = gr.Audio(label="Audio", interactive=False)
304