File size: 517 Bytes
95f32b9
c973b8b
 
 
 
 
 
 
 
 
 
 
 
 
b2d5942
12b8f22
95f32b9
c973b8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from transformers import pipeline
import gradio as gr

titulo = "Mi primer demo de Transcripción"
descripcion = "Este es un demo transcriptor audio-texto en español."
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"],
    title = titulo,
    description = descripcion
).launch()