Audio Speed Changer

Speed audio up or slow it down, from 0.25× to 4×, and export the result as WAV. Fair warning: like a record played at the wrong speed, pitch changes along with tempo — faster means higher, slower means deeper.

audio-speed-changer · runs locally
Drop an audio file here or click to browse. MP3, WAV, OGG, M4A — anything your browser can play.

How this speed changer works — and what it honestly does

Pick a preset from 0.25× to 4× or type a custom rate, and the tool replays your audio through an offline renderer at the new speed, producing a file that is proportionally shorter or longer. This is resampling — the digital equivalent of playing a record at the wrong RPM — so pitch changes with tempo. Sped-up voices go chipmunk; slowed-down audio drops into slow-motion rumble. That is not a bug, it is the physics of the method.

Pitch-preserving time-stretch is a different beast: it needs a phase vocoder or similar DSP that analyses and rebuilds the signal, with artifacts of its own. This tool deliberately keeps things simple and artifact-free within its method. And if your goal is just listening faster — a lecture, a podcast — you may not need an export at all: the playback-speed control in your browser’s native player and every podcast app already preserves pitch.

Good uses for pitch-shifted speed changes

  1. Slowing a riff to 0.5× to transcribe it — it lands exactly an octave down, so notes map cleanly.
  2. Creating deliberate chipmunk or slowed-reverb style effects.
  3. Slowing dictation slightly (0.75×) where the pitch drop is mild and clarity wins.

Combine with the other audio tools

Renders export as 16-bit WAV at the original sample rate, previewable on the page before download. Cut the section you need first with the Audio Trimmer to keep files small, and if the result comes out quiet, run it through the Audio Volume Booster afterwards.

Frequently asked questions

Is my audio uploaded anywhere?

No. The file is decoded and re-rendered at the new speed with the Web Audio API, entirely inside your browser. Nothing is sent to a server at any point — the tool works offline once the page has loaded.

Why is the download a WAV file?

Browsers can decode MP3 but cannot encode it without bundling a codec library, so the tool writes lossless PCM WAV instead — a format every player, editor and DAW accepts. The trade-off is size: expect roughly 10 MB per minute of stereo 44.1 kHz audio.

Why does the pitch change along with the speed?

This tool resamples the audio, exactly like spinning a vinyl record or tape faster or slower: the samples play back at a different rate, so frequency shifts with tempo — 2× is an octave up, 0.5× an octave down. Keeping pitch constant while changing speed requires a phase-vocoder style DSP algorithm, which this tool deliberately avoids. If you just want to listen faster without exporting, your browser's native player (and every podcast app) already does pitch-preserving speed changes.

Does 2× speed halve the file size?

Yes. Doubling the speed halves the number of samples in the output, and WAV size is directly proportional to sample count — so a 2× render is half the size of a 1× render, and a 0.5× render is twice the size.