MusIre commited on
Commit
5b30361
·
1 Parent(s): cd65652

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def transcribe_audio(input_audio):
26
 
27
  iface = gr.Interface(
28
  fn=transcribe_audio,
29
- inputs=gr.Audio(source="microphone", type="wav", label="Speak"),
30
  outputs="text",
31
  live=True
32
  )
 
26
 
27
  iface = gr.Interface(
28
  fn=transcribe_audio,
29
+ inputs=gr.Audio(type="microphone", label="Speak"), # Updated: Removed 'source'
30
  outputs="text",
31
  live=True
32
  )