Media
Vergleicht mehrere Aufnahmen nach Rauschen, Clipping, Tempo, Dauer und Konsistenz und reiht sie.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
# 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/de/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'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/audio-voiceover-take-selector| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| take1 | fileUpload nötig | Ja | — |
| take2 | fileUpload nötig | Ja | — |
| take3 | fileUpload nötig | Nein | — |
| take4 | fileUpload nötig | Nein | — |
| take5 | fileUpload nötig | Nein | — |
| take6 | fileUpload nötig | Nein | — |
JSON-Ergebnis
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-audio-voiceover-take-selector": {
"name": "audio-voiceover-take-selector",
"description": "Vergleicht mehrere Aufnahmen nach Rauschen, Clipping, Tempo, Dauer und Konsistenz und reiht sie.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-voiceover-take-selector",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"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"
}
}
}Fragen oder Probleme? Kontakt: [email protected]