Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
from transformers import pipeline
|
2 |
import gradio as gr
|
3 |
|
4 |
-
|
5 |
|
6 |
def transcribe(audio):
|
7 |
-
|
8 |
-
|
9 |
|
10 |
gr.Interface(
|
11 |
fn=transcribe,
|
12 |
-
inputs=[gr.Audio(
|
13 |
outputs=["textbox"],
|
14 |
-
title="
|
15 |
-
|
|
|
1 |
from transformers import pipeline
|
2 |
import gradio as gr
|
3 |
|
4 |
+
model = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-large-xlsr-53-spanish")
|
5 |
|
6 |
def transcribe(audio):
|
7 |
+
text = model(audio)["text"]
|
8 |
+
return text
|
9 |
|
10 |
gr.Interface(
|
11 |
fn=transcribe,
|
12 |
+
inputs=[gr.Audio(sources=["microphone"], type="filepath")],
|
13 |
outputs=["textbox"],
|
14 |
+
title="Audios cortos a texto"
|
15 |
+
).launch()
|