cbpascual commited on
Commit
9571056
1 Parent(s): cc64dd3

Get an audio input into the app

Browse files
Files changed (1) hide show
  1. app.py +13 -3
app.py CHANGED
@@ -1,4 +1,14 @@
1
- import streamlit as st
 
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
 
4
+ model = pipeline("automatic-speech-recognition", model="facebook/wav2vec2-large-xlsr-53-spanish")
5
+
6
+ def transcribe(audio):
7
+ text = model(audio)["text"]
8
+ return text
9
+
10
+ gr.Interface(
11
+ fn=transcribe,
12
+ inputs=[gr.Audio(source="microphone", type="filepath")],
13
+ outputs=["textbox"],
14
+ ).launch()