Spaces:
Runtime error
Runtime error
Commit
·
cfdce4a
1
Parent(s):
22afc1d
Update app.py
Browse files
app.py
CHANGED
|
@@ -432,17 +432,20 @@ with block as demo:
|
|
| 432 |
link = gr.Textbox(
|
| 433 |
label="YouTube Link", placeholder="Enter YouTube link..."
|
| 434 |
)
|
| 435 |
-
|
| 436 |
-
|
| 437 |
with gr.Row().style(equal_height=True):
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 446 |
|
| 447 |
with gr.Row().style(equal_height=True):
|
| 448 |
summary = gr.Textbox(
|
|
|
|
| 432 |
link = gr.Textbox(
|
| 433 |
label="YouTube Link", placeholder="Enter YouTube link..."
|
| 434 |
)
|
| 435 |
+
|
|
|
|
| 436 |
with gr.Row().style(equal_height=True):
|
| 437 |
+
with gr.Column(variant="panel", scale=1):
|
| 438 |
+
title = gr.Label(label="Video Title")
|
| 439 |
+
|
| 440 |
+
# with gr.Row().style(equal_height=True):
|
| 441 |
+
img = gr.Image(label="Thumbnail")
|
| 442 |
+
|
| 443 |
+
with gr.Column(variant="panel", scale=1):
|
| 444 |
+
text = gr.Textbox(
|
| 445 |
+
label="Transcription",
|
| 446 |
+
placeholder="Transcription Output...",
|
| 447 |
+
lines=10,
|
| 448 |
+
).style(show_copy_button=True)
|
| 449 |
|
| 450 |
with gr.Row().style(equal_height=True):
|
| 451 |
summary = gr.Textbox(
|