aspram-realtime / app.py
yerevann's picture
Update app.py
d75fae6
raw history blame
No virus
551 Bytes
from transformers import pipeline
import gradio as gr
import time
asr = pipeline("automatic-speech-recognition", "YSU/aspram")
def transcribe(audio, state=""):
time.sleep(5)
text = asr(audio)["text"]
state += text + " "
print('chunk!')
return state, state
gr.Interface(
fn=transcribe,
inputs=[
gr.inputs.Audio(source="microphone", type="filepath"),
"state"
],
outputs=[
"textbox",
"state"
],
live=True,
css='body {background-color: rgba(240, 200, 192)}',
).launch()