Processes an audio file to change its playback speed based on a speed factor.
⏩ Try different speed factors like 1.5x or 0.75x to test quality!
| Parameter | Type | Required | Description |
|---|---|---|---|
audio_path | String | Yes | The S3 path of the input audio file |
conversion_id | String | Yes | Unique identifier for this conversion request |
speed_change_factor | Number | Yes | Factor to change speed (e.g., 2.0 = double speed, 0.5 = half speed) (min: 0.25, max: 4.0) |
output_extension | String | Yes | Desired output format (mp3, wav, flac, ogg, aac, webm) |
webhook_url | String | Optional | URL to receive callback notification when processing completes |
user_id | String | Optional | User ID for tracking (from authentication token) |
content-type: multipart/form-data
📂 The conversion_path field contains the direct link to download the speed-modified audio.
URL of the input audio to change speed.
"https://example.com/input_audio.mp3"
Factor to change the audio speed (min: 0.25, max: 4.0)
0.25 <= x <= 41.5
Audio file to upload and process directly.
Desired output format.
mp3, wav, flac, ogg, aac, webm "mp3"
Callback URL for async processing results.
"http://your-webhook-url.com/callback"