eskayML commited on
Commit
49d138e
1 Parent(s): df0806b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+
3
+ p = pipeline("automatic-speech-recognition")
4
+ import gradio as gr
5
+
6
+ def transcribe(audio):
7
+ text = p(audio)["text"]
8
+ return text
9
+
10
+ gr.Interface(
11
+ fn=transcribe,
12
+ inputs=gr.Audio(source="microphone", type="filepath"),
13
+ outputs="text").launch()
14
+