Media
Applique une chaîne de mastering configurable : passe-haut, débruitage, désibilisation, compression, EQ tilt, normalisation LUFS et limiteur true-peak.
Appelez cet outil depuis votre code en trois langages.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/audio-podcast-mastering-chain' \
-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/fr/api/tools/audio-podcast-mastering-chain' \
-F 'audioFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'masteringPreset=balanced' \
-F 'highPassHz=80' \
-F 'noiseReduction=0.55' \
-F 'deEssing=0.5' \
-F 'compression=0.6' \
-F 'eqTilt=0.5' \
-F 'loudnessTarget=apple-podcasts' \
-F 'truePeakLimit=-1.5' \
-F 'outputFormat=mp3'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/audio-podcast-mastering-chain| Nom | Type | Requis | Description |
|---|---|---|---|
| audioFile | fileupload requis | Oui | — |
| masteringPreset | select | Oui | — |
| highPassHz | number | Non | — |
| noiseReduction | range | Non | — |
| deEssing | range | Non | — |
| compression | range | Non | — |
| eqTilt | range | Non | — |
| loudnessTarget | select | Non | — |
| truePeakLimit | number | Non | — |
| outputFormat | select | Non | — |
Résultat fichier
{
"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)"
}Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-audio-podcast-mastering-chain": {
"name": "audio-podcast-mastering-chain",
"description": "Applique une chaîne de mastering configurable : passe-haut, débruitage, désibilisation, compression, EQ tilt, normalisation LUFS et limiteur true-peak.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=audio-podcast-mastering-chain",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "audio-podcast-mastering-chain",
"arguments": {
"audioFile": "https://example.com/file.ext",
"masteringPreset": "balanced",
"highPassHz": 80,
"noiseReduction": 0.55,
"deEssing": 0.5,
"compression": 0.6,
"eqTilt": 0.5,
"loudnessTarget": "apple-podcasts",
"truePeakLimit": -1.5,
"outputFormat": "mp3"
}
}
}Des questions ou un problème ? Contactez [email protected]