File size: 388 Bytes
0c0198e
 
c8777be
5677759
6061f6b
0c0198e
5677759
 
6061f6b
c8777be
6061f6b
5677759
c22f969
5677759
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()