audiotest / app.py
Hannah
tweak app
ab1f6c0
raw
history blame contribute delete
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()