Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kadriu
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test
/
app.py
kadriu
Update app.py
5f63f1b
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
178 Bytes
import
gradio
as
gr
def
record_audio
(
audio
):
return
audio
demo = gr.Interface(
record_audio,
gr.Audio(),
"audio"
)
if
__name__ ==
"__main__"
:
demo.launch()