test / app.py
mskov's picture
Update app.py
74f5766
raw
history blame
435 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.Audio(source="microphone", type="filepath", streaming=True),
"state"
],
outputs=[
"textbox",
"state"
],
live=True).launch()