- ⏩ Speed up or slow down audio effortlessly
- 🎶 Supports multiple formats like MP3, WAV, FLAC, and more
- 🚀 Fast processing with high-quality output
Endpoint
Sample Output
Listen to the speed-changed audio:Try it Yourself
Visit the Audio Speed Changer Endpoint Explorer to upload audio files and adjust their playback speed.⏩ Try different speed factors like 1.5x or 0.75x to test quality!
Request Parameters
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) |
Sample Request
Python
Sample Response
Success (200 OK)
Webhook Response
When transcription completes, your webhook will receive:
📂 The conversion_path
field contains the direct link to download the speed-modified audio.
Payload and Request Formation
Authorizations
Body
multipart/form-data
URL of the input audio to change speed.
Example:
"https://example.com/input_audio.mp3"
Factor to change the audio speed (min: 0.25, max: 4.0)
Required range:
0.25 <= x <= 4
Example:
1.5
Deprecated: use audio_url
instead.
Example:
"https://example.com/input_audio.mp3"
Audio file to upload and process directly.
Desired output format.
Available options:
mp3
, wav
, flac
, ogg
, aac
, webm
Example:
"mp3"
Callback URL for async processing results.
Example:
"http://your-webhook-url.com/callback"