Media
Автоматически приглушает музыкальную подложку под голос через sidechain-компрессию, с шаблонами фейдов для интро и аутро.
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-podcast-intro-outro-ducker' \
-H 'Content-Type: application/json' \
-d '{"filename":"voiceFile.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-podcast-intro-outro-ducker' \
-H 'Content-Type: application/json' \
-d '{"filename":"musicFile.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/ru/api/tools/audio-podcast-intro-outro-ducker' \
-F 'voiceFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'musicFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'duckingMode=sidechain' \
-F 'duckingDepth=-12' \
-F 'attackMs=40' \
-F 'releaseMs=300' \
-F 'musicGain=-6' \
-F 'musicStart=0' \
-F 'musicEnd=0' \
-F 'outputFormat=mp3'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/audio-podcast-intro-outro-ducker| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| voiceFile | fileнужна загрузка | Да | — |
| musicFile | fileнужна загрузка | Да | — |
| duckingMode | select | Да | — |
| duckingDepth | number | Нет | — |
| attackMs | number | Нет | — |
| releaseMs | number | Нет | — |
| musicGain | number | Нет | — |
| musicStart | number | Нет | — |
| musicEnd | number | Нет | — |
| outputFormat | select | Нет | — |
Файловый результат
{
"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)"
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-audio-podcast-intro-outro-ducker": {
"name": "audio-podcast-intro-outro-ducker",
"description": "Автоматически приглушает музыкальную подложку под голос через sidechain-компрессию, с шаблонами фейдов для интро и аутро.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-podcast-intro-outro-ducker",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "audio-podcast-intro-outro-ducker",
"arguments": {
"voiceFile": "https://example.com/file.ext",
"musicFile": "https://example.com/file.ext",
"duckingMode": "sidechain",
"duckingDepth": -12,
"attackMs": 40,
"releaseMs": 300,
"musicGain": -6,
"musicStart": 0,
"musicEnd": 0,
"outputFormat": "mp3"
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]