Media
Добавляет требуемую тишину в начале/конце и комнатный тон между главами для соответствия ACX.
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-audiobook-room-tone-inserter' \
-H 'Content-Type: application/json' \
-d '{"filename":"chapter1.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-audiobook-room-tone-inserter' \
-H 'Content-Type: application/json' \
-d '{"filename":"chapter2.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-audiobook-room-tone-inserter' \
-H 'Content-Type: application/json' \
-d '{"filename":"chapter3.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-audiobook-room-tone-inserter' \
-H 'Content-Type: application/json' \
-d '{"filename":"roomToneSample.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-audiobook-room-tone-inserter' \
-F 'chapter1=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'chapter2=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'chapter3=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'toneSource=synthetic' \
-F 'roomToneSample=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'leadInSilence=0.5' \
-F 'leadOutSilence=0.5' \
-F 'roomToneBetween=0.5' \
-F 'outputFormat=wav'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/audio-audiobook-room-tone-inserter| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| chapter1 | fileнужна загрузка | Да | — |
| chapter2 | fileнужна загрузка | Нет | — |
| chapter3 | fileнужна загрузка | Нет | — |
| toneSource | select | Да | — |
| roomToneSample | fileнужна загрузка | Нет | — |
| leadInSilence | number | Нет | — |
| leadOutSilence | number | Нет | — |
| roomToneBetween | 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-audiobook-room-tone-inserter": {
"name": "audio-audiobook-room-tone-inserter",
"description": "Добавляет требуемую тишину в начале/конце и комнатный тон между главами для соответствия ACX.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-audiobook-room-tone-inserter",
"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-audiobook-room-tone-inserter",
"arguments": {
"chapter1": "https://example.com/file.ext",
"chapter2": "https://example.com/file.ext",
"chapter3": "https://example.com/file.ext",
"toneSource": "synthetic",
"roomToneSample": "https://example.com/file.ext",
"leadInSilence": 0.5,
"leadOutSilence": 0.5,
"roomToneBetween": 0.5,
"outputFormat": "wav"
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]