Media
Professional audio noise reduction using FFmpeg advanced filters (highpass, afftdn, loudnorm) for optimal audio cleaning
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/ffmpeg-audio-noise-reduction' \
-F 'file=@/path/to/audioFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/ffmpeg-audio-noise-reduction' \
-F 'audioFile=/path/to/file.ext' \
-F 'highpassFreq=80' \
-F 'noiseReductionDb=-25' \
-F 'outputVolume=1.5' \
-F 'outputFormat=wav'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ffmpeg-audio-noise-reduction| Name | Type | Required | Description |
|---|---|---|---|
| audioFile | fileupload required | Yes | — |
| highpassFreq | range | No | Filter out low-frequency rumble and hum. Higher values remove more bass frequencies. |
| noiseReductionDb | range | No | Noise floor reduction in decibels. More negative values = stronger reduction. Range: -50dB (max) to -10dB (min). |
| outputVolume | range | No | Volume amplification after noise reduction. Compensates for volume loss during processing. |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-ffmpeg-audio-noise-reduction": {
"name": "ffmpeg-audio-noise-reduction",
"description": "Professional audio noise reduction using FFmpeg advanced filters (highpass, afftdn, loudnorm) for optimal audio cleaning",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ffmpeg-audio-noise-reduction",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "ffmpeg-audio-noise-reduction",
"arguments": {
"audioFile": "https://example.com/file.ext",
"highpassFreq": 80,
"noiseReductionDb": -25,
"outputVolume": 1.5,
"outputFormat": "wav"
}
}
}| outputFormat |
| select |
| Yes |
| — |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]