streaming-asr / app.py
abidlabs's picture
abidlabs HF staff
Update app.py
be3f875
raw
history blame
425 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"
],
live=True).launch()