Compress or remove metadata and embedded artwork to reduce file size
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-metadata-compress' \
-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-metadata-compress' \
-F 'audioFile=/path/to/file.ext' \
-F 'removeMetadata=true' \
-F 'removeArtwork=true'
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-metadata-compress
Parameters
Name
Type
Required
Description
audioFile
fileupload required
Yes
—
removeMetadata
checkbox
No
—
removeArtwork
checkbox
No
—
File-type parameters must be uploaded first via POST /upload/audio-metadata-compress, then the returned filePath is passed to the corresponding file field.