mabhay commited on
Commit
b9a765b
·
1 Parent(s): 2dd63ef

update expected time info

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -48,7 +48,7 @@ def download_audio(link: str) -> str:
48
  demo = gr.Interface(
49
  fn=infer,
50
  inputs=[gr.Textbox(label = "Youtube Link", placeholder="Copy link here"), gr.Checkbox(value=True, label="Add timestamps?")],
51
- outputs=[gr.Textbox(label = "Transcription", placeholder="Should be here after almost same time as video length")],
52
  examples=[ ["https://www.youtube.com/watch?v=KL2T0XRzWUI", False], ["https://www.youtube.com/watch?v=yGB_K_xlHdI", False], ["https://www.youtube.com/watch?v=dv9sgFHS2Do", True],]
53
  )
54
 
 
48
  demo = gr.Interface(
49
  fn=infer,
50
  inputs=[gr.Textbox(label = "Youtube Link", placeholder="Copy link here"), gr.Checkbox(value=True, label="Add timestamps?")],
51
+ outputs=[gr.Textbox(label = "Transcription", placeholder=" Expected processing time ~ Half the length of video. Hang tight!!")],
52
  examples=[ ["https://www.youtube.com/watch?v=KL2T0XRzWUI", False], ["https://www.youtube.com/watch?v=yGB_K_xlHdI", False], ["https://www.youtube.com/watch?v=dv9sgFHS2Do", True],]
53
  )
54