Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hmb
/
audiotest
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
audiotest
/
app.py
Hannah
tweak app
ab1f6c0
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
197 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
audio = gr.Audio()
btn = gr.Button()
audio2 = gr.Audio()
btn.click(fn=
lambda
x: x, inputs=audio, outputs=audio2)
demo.queue().launch()