1 Reverb
Add reverb to your audio tracks.
Example request with curl
curl -X POST "https://convert.tigerra.com/reverb" \
-H "Authorization: Bearer your-token" \
-F "reverberance=5" \
-F "has_advanved=true" \
-F "damping=50" \
-F "roomScale=50" \
-F "stereoDepth=50" \
-F "preDelay=50" \
-F "wetGain=0" \
-F "file=@/path/file.mp3"
Post Parameters
reverberance
int
Valid values: from 0 to 100
Required.
has_advanved
bool
Valid values: true, or nothing
This parameter is optional. If present, it must contain one of the values listed below.
damping
int
Valid values: from 0 to 100
damping
roomScale
int
Valid values: from 0 to 100
roomScale
stereoDepth
int
Valid values: from 0 to 100
stereoDepth
preDelay
int
Valid values: from 0 to 100
preDelay
wetGain
int
Valid values: from -10 to 10
wetGain
2 After the conversion request, you will receive a PID with which you can check the status of your request and delete the file.
Example response
{
"status":"pending",
"pid":"1:7a005b208e60445389c7930b376f91e4"
}
3 To check the status of the convertion, use the following request.
Example status check request
curl -X GET "https://convert.tigerra.com/get-status/1:7a005b208e60445389c7930b376f91e4" \
-H "Authorization: Bearer your-token"
4 If the conversion is successful, you will receive a status of 'completed' and a data attribute containing the download URL.
Example status check response
{
"status": "completed",
"data": "https://convert.tigerra.com/download/My9kZjkxZGZhMzNmMWE0NmZjODYwZDk4YmE3MDAxOTIwMi0xNzMwOTE0MjY1LTM6YmFlMmE3N2FkNjRiNGE0OTljYzZlYTkwYjA2ZWE3NmQvMS5tcDM"
}
5 Download the converted file. Receive the file as a stream or multiple files urls for download as a stream.
Example file download
curl -X GET "https://convert.tigerra.com/download/My9kZjkxZGZhMzNmMWE0NmZjODYwZDk4YmE3MDAxOTIwMi0xNzMwOTE0MjY1LTM6YmFlMmE3N2FkNjRiNGE0OTljYzZlYTkwYjA2ZWE3NmQvMS5tcDM" \
-H "Authorization: Bearer your-token" \
--output downloaded_file.ext
6 Delete the file.
Example file deletion
curl -X DELETE "https://convert.tigerra.com/delete-pid/1:7a005b208e60445389c7930b376f91e4" \
-H "Authorization: Bearer your-token"