audio-mic / app.py
hysts's picture
hysts HF Staff
Update
74093a5
raw
history blame contribute delete
151 Bytes
#!/usr/bin/env python
import gradio as gr
with gr.Blocks() as demo:
audio = gr.Audio(source="microphone", type="filepath")
demo.queue().launch()