FarhadMadadzade
commited on
Commit
•
306a78c
1
Parent(s):
be2bd34
changed max_lines
Browse files
app.py
CHANGED
@@ -31,7 +31,10 @@ def process_video(date):
|
|
31 |
iface = gr.Interface(
|
32 |
fn=process_video,
|
33 |
inputs=gr.inputs.Textbox(label="Date with format YYYYMMDD"),
|
34 |
-
outputs=[
|
|
|
|
|
|
|
35 |
title="Romanian Transcription Test",
|
36 |
)
|
37 |
|
|
|
31 |
iface = gr.Interface(
|
32 |
fn=process_video,
|
33 |
inputs=gr.inputs.Textbox(label="Date with format YYYYMMDD"),
|
34 |
+
outputs=[
|
35 |
+
gr.outputs.Video(),
|
36 |
+
gr.outputs.Textbox(lines=1000, max_lines=1000, interactive=True),
|
37 |
+
],
|
38 |
title="Romanian Transcription Test",
|
39 |
)
|
40 |
|