Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -1,23 +1,21 @@
|
|
1 |
-
|
2 |
import gradio as gr
|
3 |
|
4 |
-
|
5 |
|
6 |
-
def
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
14 |
|
15 |
gr.Interface(
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
gr.inputs.Textbox(type="number", default=1, label="Duration in seconds"),
|
21 |
-
],
|
22 |
-
"audio",
|
23 |
).launch()
|
|
|
1 |
+
from transformers import pipeline
|
2 |
import gradio as gr
|
3 |
|
4 |
+
model = pipeline("automatic-speech-recognition")
|
5 |
|
6 |
+
def transcribe_audio(mic=None, file=None):
|
7 |
+
if mic is not None:
|
8 |
+
audio = mic
|
9 |
+
elif file is not None:
|
10 |
+
audio = file
|
11 |
+
else:
|
12 |
+
return("You must either provide a mic recording or a file")
|
13 |
+
transcription = model(audio)["text"]
|
14 |
+
return transcription
|
15 |
|
16 |
gr.Interface(
|
17 |
+
fn=transcribe_audio,
|
18 |
+
inputs=[gr.inputs.Audio(source="microphone", type="filepath", optional=True),
|
19 |
+
gr.inputs.Audio(source ="upload", type="filepath", optional=True)],
|
20 |
+
outputs="text",
|
|
|
|
|
|
|
21 |
).launch()
|