import gradio as gr | |
def audio_reverse(x): | |
""" | |
Reverses audio | |
""" | |
print(x) | |
return x | |
app, _, _ = gr.Interface(audio_reverse, gr.Audio(type="filepath"), "audio").launch(mcp_server=True) |
import gradio as gr | |
def audio_reverse(x): | |
""" | |
Reverses audio | |
""" | |
print(x) | |
return x | |
app, _, _ = gr.Interface(audio_reverse, gr.Audio(type="filepath"), "audio").launch(mcp_server=True) |