pratham0011 commited on
Commit
af3f56c
·
verified ·
1 Parent(s): 329528b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -23,12 +23,13 @@ def transcribe(audio):
23
 
24
 
25
  gr.Interface(
26
- title = 'OpenAI-Whisper Audio to Text Web UI',
27
  fn=transcribe,
28
  inputs=[
29
- gr.Audio(source="microphone", type="filepath")
30
  ],
31
  outputs=[
32
  "textbox"
33
  ],
34
  live=True).launch()
 
 
23
 
24
 
25
  gr.Interface(
26
+ title='OpenAI-Whisper Audio to Text Web UI',
27
  fn=transcribe,
28
  inputs=[
29
+ gr.Audio(type="filepath")
30
  ],
31
  outputs=[
32
  "textbox"
33
  ],
34
  live=True).launch()
35
+