abidlabs's picture
abidlabs HF staff
Create app.py
2b437e9
raw history blame
No virus
444 Bytes
from transformers import pipeline
import gradio as gr
p = pipeline("automatic-speech-recognition")
def transcribe(audio, state=""):
text = p(audio)["text"]
state += text + " "
return state, state
gr.Interface(
fn=transcribe,
inputs=[
gr.inputs.Audio(source="microphone", type="filepath"),
"state"
],
outputs=[
"textbox",
"state"
]
outputs="text",
live=True).launch()