File size: 276 Bytes
d525b3b
 
 
 
 
50fd6ab
d525b3b
 
50fd6ab
d525b3b
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

import gradio as gr

with gr.Blocks() as demo:
    audio = gr.Audio()
    btn = gr.Button()
    audio2 = gr.Audio()
    gr.Examples(examples=["sample.mp3"], inputs=audio)
    btn.click(fn=lambda x: x, inputs=audio, outputs=audio2)
demo.queue().launch()