dineshb commited on
Commit
a852277
·
1 Parent(s): 9ee742b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -69,6 +69,7 @@ def yt_transcribe(yt_url, task):
69
 
70
  demo = gr.Blocks()
71
  output_2 = gr.File(label="Download")
 
72
  mf_transcribe = gr.Interface(
73
  fn=transcribe,
74
  inputs=[
@@ -80,9 +81,7 @@ mf_transcribe = gr.Interface(
80
  layout="horizontal",
81
  theme="huggingface",
82
  title="Speech to Text",
83
- description=(
84
- "Transcribe audio speeches to text!"
85
- ),
86
  allow_flagging="never",
87
  )
88
 
 
69
 
70
  demo = gr.Blocks()
71
  output_2 = gr.File(label="Download")
72
+ description = """This application displays transcribed text for given audio input <img src="https://i.ibb.co/J5DscKw/GVP-Womens.jpg" width=200px>"""
73
  mf_transcribe = gr.Interface(
74
  fn=transcribe,
75
  inputs=[
 
81
  layout="horizontal",
82
  theme="huggingface",
83
  title="Speech to Text",
84
+ description= description,
 
 
85
  allow_flagging="never",
86
  )
87