FarhadMadadzade commited on
Commit
be2bd34
1 Parent(s): e5f8741

trying to make output text all visible

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ def process_video(date):
31
  iface = gr.Interface(
32
  fn=process_video,
33
  inputs=gr.inputs.Textbox(label="Date with format YYYYMMDD"),
34
- outputs=["video", "text"],
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=[gr.outputs.Video(), gr.outputs.Textbox(lines=1000, interactive=True)],
35
  title="Romanian Transcription Test",
36
  )
37