Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Add-Vishnu
/
Demo
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
990e572
Demo
/
app.py
Add-Vishnu
Update app.py
990e572
over 1 year ago
raw
Copy download link
history
blame
Safe
185 Bytes
import
gradio
as
gr
def
dem
(
audio
):
print
(
type
(audio))
return
audio
demo = gr.Interface(
dem,
inputs=
"microphone"
,
outputs=
"audio"
,
)
demo.launch()