Center description, set output textbox to non-interactive
Browse files
app.py
CHANGED
|
@@ -279,9 +279,9 @@ with gr.Blocks(theme=theme) as demo:
|
|
| 279 |
|
| 280 |
gr.Markdown(
|
| 281 |
'''
|
| 282 |
-
<h1 align="center">
|
| 283 |
|
| 284 |
-
Welcome to SnipSnap!
|
| 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 |
|