Spaces:
Running
Running
File size: 379 Bytes
f7c1033 a410341 77a00cc 33393fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
pip install transformers
from transformers import pipeline
import gradio as gr
modelo = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-large-xlsr-53-spanish")
def transcribe(audio):
text = modelo(audio)["text"]
return text
gr.Interface(
fn=transcribe,
inputs=[gr.Audio(source="microphone", type="filepath")],
outputs=["textbox"]
).launch() |