Media
Compare multiple recorded takes by noise, clipping, tempo, duration and consistency, then rank them to pick the best.
Call this tool from your code in three languages.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-voiceover-take-selector' \
-H 'Content-Type: application/json' \
-d '{"filename":"take1.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-voiceover-take-selector' \
-H 'Content-Type: application/json' \
-d '{"filename":"take2.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-voiceover-take-selector' \
-H 'Content-Type: application/json' \
-d '{"filename":"take3.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-voiceover-take-selector' \
-H 'Content-Type: application/json' \
-d '{"filename":"take4.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-voiceover-take-selector' \
-H 'Content-Type: application/json' \
-d '{"filename":"take5.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-voiceover-take-selector' \
-H 'Content-Type: application/json' \
-d '{"filename":"take6.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/en/api/tools/audio-voiceover-take-selector' \
-F 'take1=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'take2=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'take3=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'take4=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'take5=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'take6=uploads/2026/01/01/your-tool-1700000000000-abc123.ext'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/audio-voiceover-take-selector| Name | Type | Required | Description |
|---|---|---|---|
| take1 | fileupload required | Yes | — |
| take2 | fileupload required | Yes | — |
| take3 | fileupload required | No | — |
| take4 | fileupload required | No | — |
| take5 | fileupload required | No | — |
| take6 | fileupload required | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}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-audio-voiceover-take-selector": {
"name": "audio-voiceover-take-selector",
"description": "Compare multiple recorded takes by noise, clipping, tempo, duration and consistency, then rank them to pick the best.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-voiceover-take-selector",
"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": "audio-voiceover-take-selector",
"arguments": {
"take1": "https://example.com/file.ext",
"take2": "https://example.com/file.ext",
"take3": "https://example.com/file.ext",
"take4": "https://example.com/file.ext",
"take5": "https://example.com/file.ext",
"take6": "https://example.com/file.ext"
}
}
}Questions or issues? Contact [email protected]