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...
c416243
audio-reverse-mcp
/
app.py
abidlabs
HF Staff
Update app.py
5de4e0b
verified
2 months ago
raw
Copy download link
history
blame
Safe
204 Bytes
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
)