Speed up part of a video online
Make a video, or one boring stretch of it, play faster — 1.5x, 2x, 4x, 8x or any multiplier you type. The audio is retimed without going squeaky, and the whole thing runs in this tab, so your file is never uploaded.
Drop your video here
or click to browse — MP4, MKV, MOV, WebM, AVI and more
How to make a video faster in your browser
- 01
Open your video
Drag an MP4, MOV, MKV, WebM or AVI onto the drop zone above. It is opened straight off your disk — there is no upload step to sit through first.
- 02
Mark the section to accelerate
Right-click the timeline where the slow part begins and choose Speed up, or park the playhead there and press "+ Add edit". A green band marks the range.
- 03
Choose a multiplier
Pick 1.5x, 2x, 4x or 8x from the card, or type your own value between 1.1x and 16x. Below 1.1x the change is too small to be worth a re-encode, so the field will not go there.
- 04
Speed up the whole clip if you want
To accelerate everything, drag the band handles from 0 to the end of the timeline. There is no separate "whole video" mode because the range already covers it.
- 05
Apply and download
Press Apply All Edits. The editor shows an estimated output duration before you commit, and the download link appears when the encode finishes.
Picking a speed: what each multiplier is good for
1.5x
Tightening a talking-head recording. Fast enough to save real time, slow enough that nobody notices you did it.
2x
The default for cutting a demo or a tutorial down to size. Speech is still comfortably followable.
4x
Skimming past an install, a render or a long approach shot. Speech becomes hard to follow, so this is for footage you do not need to hear.
8x to 16x
Time-lapse territory: a long static shot compressed into a few seconds. Expect heavy frame dropping, and consider muting the audio entirely. 16x is the ceiling.
What FFmpeg does to speed a section up
The clip is split into three pieces: everything before the selection, the
selection itself, and everything after it. Only the middle piece is retimed.
Its video timestamps are divided by the multiplier with
setpts=(PTS-STARTPTS)/factor
— halving every timestamp is exactly what "play it twice as fast" means — and
the three pieces are concatenated back into one stream.
Audio is handled separately by
atempo,
which resamples in a way that changes tempo without changing pitch. That is why
sped-up speech here does not turn into a cartoon voice. atempo refuses factors
above 2.0, so a 4x request becomes
atempo=2.0,atempo=2.0
and an 8x request chains three of them — the editor builds that chain for you.
One thing worth knowing: this is timestamp retiming, not frame interpolation. Frames get dropped to fit the shorter duration, they are not blended into new ones. That is the correct behaviour for a time-lapse and the reason a heavily sped-up pan can look a little steppy. The full pipeline is documented here.
Speeding up and file size
A sped-up video is shorter, so it is almost always smaller — a 2x section contains half the play time and therefore roughly half the bits. If size is the actual goal, the max-resolution control does more: capping a 4K screen recording at 720p shrinks it far more than any speed change, and it makes the encode finish sooner too, since your CPU has a quarter of the pixels to compress.
If you only want the footage shorter and you do not care about the middle at all, a cut is cheaper than a speed-up: removing the section outright takes it to zero seconds instead of a fraction of them.
Speeding a passage up is also the tidiest way to bring a clip under a hard duration limit without losing anything: a section of length L at factor f becomes L/f, so thirty seconds at 1.5× saves ten. Trimming a video to a specific length works through that arithmetic against a target.
Questions about speeding up video
Can I speed up only part of a video?
Does speeding up the video make the audio sound like a chipmunk?
What speed multipliers can I use?
Does speeding up a video lose frames?
Is the video uploaded to speed it up?
Other edits on the same timeline
The same timeline also lets you slow a section down and cut a section out, and you can combine all three in one pass. Start from the free online video editor if you want everything at once.
Guides on changing video speed
The mechanics behind the multiplier: what setpts and atempo do, why frames are dropped rather than blended, what it costs, and where to do it when the only machine to hand is a phone.
- How to speed up only part of a videoMost editors apply one speed to the whole clip. What a per-section speed change actually does to frames and audio, and how to do it in a browser or in FFmpeg.
- How to speed up a video on a phoneNeither Photos app can speed up an ordinary clip. What the exceptions are, what iMovie and the app stores cost, and how to do it in the phone's browser.
- Why slowed-down video looks choppy (and what to do about it)Slowing footage down creates no new frames — it holds the existing ones longer. The frame-rate arithmetic, and why real slow motion has to be shot, not made.
- How to trim a video without losing qualityTrimming only loses quality if the video gets re-encoded. Here is when that happens, when it does not, and the trade you are making either way.