Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/whisper-mcp
abidlabs
/
audio-reverse-mcp
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c9848e2
audio-reverse-mcp
/
app.py
abidlabs
HF Staff
Update app.py
c9848e2
verified
2 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
gradio
as
gr
def
audio_reverse
(
x
):
"""
Reverses audio
"""
return
x
app, _, _ = gr.Interface(audio_reverse,
"audio"
,
"audio"
).launch(mcp_server=
True
)