speech2text / app.py
franco1102's picture
added language
d834a53
from transformers import pipeline
import gradio as gr
modelo = pipeline("automatic-speech-recognition", model = "facebook/wav2vec2-large-xlsr-53-spanish")
title = "Speech2Text (Spanish)"
description = "Record an audio and convert it to text (Spanish)"
def transcribe(audio):
text = modelo(audio)["text"]
return text
gr.Interface(
fn = transcribe,
inputs = [gr.Audio(source="microphone", type = "filepath")],
outputs = ["textbox"],
title = title,
description = description
).launch()