pierrelf commited on
Commit
56a58c1
·
1 Parent(s): 2b3e57d

Update audio source options in gr.Interface

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ def transcribe(audio):
10
 
11
  iface = gr.Interface(
12
  fn=transcribe,
13
- inputs=gr.Audio(source="microphone", type="filepath"),
14
  outputs="text",
15
  title="Whisper Swedish",
16
  description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
 
10
 
11
  iface = gr.Interface(
12
  fn=transcribe,
13
+ inputs=gr.Audio(sources=['upload', 'microphone'], type="filepath"),
14
  outputs="text",
15
  title="Whisper Swedish",
16
  description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",