Spaces:
Sleeping
Sleeping
File size: 246 Bytes
a9a08b4 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
def get_audio(audio_path):
print(f"{audio_path=}")
return audio_path
iface = gr.Interface(
fn=get_audio,
inputs=[gr.Audio(type="filepath")],
outputs=[gr.Audio(type="filepath")]
).launch()
iface.launch() |