audi2text / app.py
Frorozcol's picture
Update app.py
f642fa4
raw
history blame
151 Bytes
import gradio as gr
gr.Interface(
fn=transcribe,
inputs = [gr.Audio(source="microphone", type="filepath")],
outputs=["textbox"]
).launch()