Media
Broadcast-Kette (Gate → Kompressor → Limiter)
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/audio-drc-broadcast' \
-F 'file=@/path/to/audioFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/de/api/tools/audio-drc-broadcast' \
-F 'audioFile=/path/to/file.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 |
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"
}
}
}| — |
| 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)"
}Fragen oder Probleme? Kontakt: [email protected]