Metantropia commited on
Commit
c8777be
verified
1 Parent(s): 7357fb5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -11
app.py CHANGED
@@ -1,18 +1,14 @@
1
- #2024
2
  from transformers import pipeline
3
  import gradio as gr
4
- modelo = pipeline("automatic-speech-recognition", "facebook/wav2vec2-large-xlsr-53-spanish")
 
5
 
6
  def transcribe(audio):
7
- text = modelo(audio)["text"]
8
  return text
9
 
10
- # Crear la interfaz de Gradio
11
- interface = gr.Interface(
12
  fn=transcribe,
13
- inputs=gr.Audio(type="filepath"), # Manejar tanto archivos como grabaciones desde el micr贸fono
14
- outputs="text" # Tipo de salida: texto
15
- )
16
-
17
- # Lanzar la interfaz
18
- interface.launch()
 
 
1
  from transformers import pipeline
2
  import gradio as gr
3
+
4
+ modelo=pipeline("automatic-speech-recognition",model="facebook/wav2vec2-large-xlsr-53-spanish")
5
 
6
  def transcribe(audio):
7
+ text=modelo(audio)["texto"]
8
  return text
9
 
10
+ gr.Interface(
 
11
  fn=transcribe,
12
+ inputs=[gr.Audio(source="microphone",type="filepath")],
13
+ outputs=["textbox"]
14
+ ).launch()