Isolate vocals and accompaniment using Spleeter or MDX models
file· File result
Quick start
Call this tool from your code in three languages.
cURL
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/audio-dialog-isolation' \
-F 'file=@/path/to/audioFile.ext'# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/audio-dialog-isolation' \
-F 'audioFile=/path/to/file.ext' \
-F 'engine=spleeter' \
-F 'outputFormat=wav'
Send a POST request with your inputs as JSON. File parameters require a separate upload first.
Endpoint
HTTP
POST https://api.elysiatools.com/en/api/tools/audio-dialog-isolation
Parameters
Name
Type
Required
Description
audioFile
fileupload required
Yes
—
engine
select
No
—
outputFormat
select
No
—
File-type parameters must be uploaded first via POST /upload/audio-dialog-isolation, then the returned filePath is passed to the corresponding file field.