Oysiyl commited on
Commit
16d9c5d
1 Parent(s): 0a67bf4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,10 +14,10 @@ def transcribe(audio):
14
 
15
  demo = gr.Interface(
16
  transcribe,
17
- gr.Audio(sources=["microphone", "upload"]),
18
  outputs="text",
19
  title="Automatic Speech Recognition for Ukrainian language demo",
20
- description="Say something or upload audiofile!",
21
  examples=[["examples/asr_example.wav"]],
22
  cache_examples=True
23
  )
 
14
 
15
  demo = gr.Interface(
16
  transcribe,
17
+ gr.Audio(sources=["upload", "microphone"]),
18
  outputs="text",
19
  title="Automatic Speech Recognition for Ukrainian language demo",
20
+ description="Click on the example below, upload audio from file or say something in microphone!",
21
  examples=[["examples/asr_example.wav"]],
22
  cache_examples=True
23
  )