File size: 221 Bytes
0c64c12
 
 
 
 
855e072
 
 
 
0c64c12
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

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()