Duplicated from hysts-debug/base-space
9ad9ad4 025ae5a 9ad9ad4
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(value="sample.mp3") btn = gr.Button() audio2 = gr.Audio() btn.click(fn=lambda x: x, inputs=audio, outputs=audio2) demo.queue().launch()