voice2text / app.py
Metantropia's picture
Update app.py
5677759 verified
raw
history blame
388 Bytes
from transformers import pipeline
import gradio as gr
model = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-large-xlsr-53-spanish")
def transcribe(audio):
text = model(audio)["text"]
return text
gr.Interface(
fn=transcribe,
inputs=[gr.Audio(sources=["microphone"], type="filepath")],
outputs=["textbox"],
title="Audios cortos a texto"
).launch()