Media
Broadcast-Kette (Gate → Kompressor → Limiter)
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-drc-broadcast' \
-H 'Content-Type: application/json' \
-d '{"filename":"audioFile.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-drc-broadcast' \
-F 'audioFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'gateThreshold=-45' \
-F 'gateRatio=3' \
-F 'compThreshold=-18' \
-F 'compRatio=3' \
-F 'compAttack=5' \
-F 'compRelease=120' \
-F 'limiterCeiling=-1' \
-F 'outputFormat=mp3'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/audio-drc-broadcast| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| audioFile | fileUpload nötig | Ja | — |
| gateThreshold | number | Nein | — |
| gateRatio | number | Nein | — |
| compThreshold | number | Nein | — |
| compRatio | number | Nein | — |
| compAttack | number | Nein | — |
| compRelease | number | Nein | — |
| limiterCeiling | number | Nein | — |
| outputFormat | select | Nein | — |
Dateiergebnis
{
"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)"
}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-drc-broadcast": {
"name": "audio-drc-broadcast",
"description": "Broadcast-Kette (Gate → Kompressor → Limiter)",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-drc-broadcast",
"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-drc-broadcast",
"arguments": {
"audioFile": "https://example.com/file.ext",
"gateThreshold": -45,
"gateRatio": 3,
"compThreshold": -18,
"compRatio": 3,
"compAttack": 5,
"compRelease": 120,
"limiterCeiling": -1,
"outputFormat": "mp3"
}
}
}Fragen oder Probleme? Kontakt: [email protected]