audio-2-texto / app.py
miguem0r4's picture
Upload 2 files
601fc85
raw
history blame contribute delete
352 Bytes
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()