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...
7d2cbf0
Demo
/
app.py
Add-Vishnu
Create app.py
7d2cbf0
over 1 year ago
raw
Copy download link
history
blame
Safe
186 Bytes
import
gradio
as
gr
def
dem
(
audio
):
print
(
type
(audio))
return
audio
demo = gr.Interface(
demo,
inputs=
"microphone"
,
outputs=
"audio"
,
)
demo.launch()