About Change Video Speed
AntiUpload's Change Video Speed tool re-times a video to any of five speed multipliers — 0.25× (4× slower), 0.5× (half speed), 1.5× (50% faster), 2× (double speed), or 4× (quad speed). The headline feature is pitch-preserving audio: speeding up or slowing down a video naively changes the audio's pitch (the chipmunk effect at fast speeds, the demon voice at slow speeds). We use FFmpeg's `atempo` filter, which uses Phase Vocoder time-stretching to preserve the original pitch regardless of playback speed. The result is a 2× lecture that still sounds like the original speaker, just talking faster — not Alvin & the Chipmunks.
Behind the scenes: the video stream gets its presentation timestamps rewritten via `setpts=PTS/<speed>` so frames pack closer in time (for fast playback) or spread out (for slow playback). The audio gets chained through `atempo` — the filter's range is [0.5, 2.0] per pass, so 4× and 0.25× chain two atempo filters in sequence (`atempo=2.0,atempo=2.0` for 4×, `atempo=0.5,atempo=0.5` for 0.25×). The `-shortest` flag truncates the output to whichever stream ends first; without it, setpts and atempo end at slightly different timestamps producing an audible silent-freeze tail at 2× and 4× speeds.
Hardware H.264 encoding via WebCodecs (when available — Chromium and Safari 17+) makes the re-encode fast. The shipped FFmpeg WASM is `--disable-asm` which is what makes libx264 5-20× slower than native; routing through the device's hardware encoder via WebCodecs sidesteps that entirely. On Firefox (which lacks WebCodecs H.264 encoder as of 2025), the tool falls back to software libx264 with `-preset ultrafast` and `-pix_fmt yuv420p` for compatibility — slower but produces identical output quality.
How it works
- Drop your videoAccepts MP4, MOV, WebM, MKV, AVI, M4V, FLV. Output is always MP4 (broadest compatibility after re-encode). No size limit from us.
- Pick a speed multiplier0.25× and 0.5× slow the video down (great for tutorials, language learning, deep video analysis). 1.5× and 2× speed it up (lectures, podcasts, content review). 4× compresses an hour of footage into 15 minutes of viewing.
- Click Change speedPitch-preserving audio rewires automatically — no manual atempo configuration needed. On WebCodecs browsers (Chrome / Safari 17+) the re-encode runs in seconds via hardware H.264. Firefox falls back to software encode.
- Download the time-shifted fileOutput is MP4 with the new playback speed baked in (it always plays at the new speed, regardless of player). Audio stays at the original pitch.