c213e8f f73b066 ab1f6c0 f73b066 ab1f6c0
1
2
3
4
5
6
7
8
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()