amrelshall commited on
Commit
e5a107b
1 Parent(s): 83af583

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -23,7 +23,7 @@ mic_transcribe = gr.Interface(
23
  fn=transcribe_long_form,
24
  inputs=gr.Audio(sources="microphone",
25
  type="filepath"),
26
- outputs=gr.Textbox(label="The record lyrics",
27
  lines=3),
28
  allow_flagging="never")
29
 
@@ -31,7 +31,7 @@ file_transcribe = gr.Interface(
31
  fn=transcribe_long_form,
32
  inputs=gr.Audio(sources="upload",
33
  type="filepath"),
34
- outputs=gr.Textbox(label="The record lyrics",
35
  lines=3),
36
  allow_flagging="never",
37
  )
 
23
  fn=transcribe_long_form,
24
  inputs=gr.Audio(sources="microphone",
25
  type="filepath"),
26
+ outputs=gr.Textbox(label="Transcription",
27
  lines=3),
28
  allow_flagging="never")
29
 
 
31
  fn=transcribe_long_form,
32
  inputs=gr.Audio(sources="upload",
33
  type="filepath"),
34
+ outputs=gr.Textbox(label="Transcription",
35
  lines=3),
36
  allow_flagging="never",
37
  )