Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -362,7 +362,12 @@ demo = gr.Interface(
|
|
362 |
gr.Textbox(value="GR", label="Speaker Name for Voice Print")
|
363 |
],
|
364 |
outputs=[
|
365 |
-
gr.Textbox(
|
|
|
|
|
|
|
|
|
|
|
366 |
gr.File(label="SRT File"),
|
367 |
gr.File(label="WebVTT File")
|
368 |
],
|
|
|
362 |
gr.Textbox(value="GR", label="Speaker Name for Voice Print")
|
363 |
],
|
364 |
outputs=[
|
365 |
+
gr.Textbox(
|
366 |
+
label="Transcript",
|
367 |
+
lines=24, # height (try 20–30)
|
368 |
+
max_lines=60, # optional scroll cap
|
369 |
+
show_copy_button=True
|
370 |
+
),
|
371 |
gr.File(label="SRT File"),
|
372 |
gr.File(label="WebVTT File")
|
373 |
],
|