Update audio source options in gr.Interface
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ def transcribe(audio):
|
|
10 |
|
11 |
iface = gr.Interface(
|
12 |
fn=transcribe,
|
13 |
-
inputs=gr.Audio(
|
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.",
|