Making a Video File Smaller Without Making It Look Bad
A video that will not attach to an email or upload over a weak connection is a common and frustrating problem, and the usual response is to drag a quality slider until it fits. That works, but it throws away the wrong thing. Four settings control video file size, they interact, and changing them in a sensible order gets you a much better result for the same final size.
The four controls
- Resolution. The pixel dimensions of each frame. Halving both dimensions quarters the pixel count, which is the single largest lever available.
- Frame rate. Frames per second. Halving it roughly halves the data, at the cost of motion smoothness.
- Bitrate or quality target. How many bits per second the encoder may spend. The main quality dial once the first two are fixed.
- Codec. The compression algorithm. A newer codec achieves the same quality at a lower bitrate, at the cost of encoding time and compatibility.
They are not independent. A 4K video at a low bitrate looks considerably worse than a 1080p video at the same bitrate, because the same bits are spread across four times as many pixels. Reducing resolution first usually beats reducing bitrate alone.
Resolution: start here
| Resolution | Pixels per frame | Relative data | Appropriate for |
|---|---|---|---|
| 3840 x 2160 (4K) | 8.3 million | 4x | Large displays, footage you will crop or reframe later |
| 1920 x 1080 (1080p) | 2.1 million | 1x | The sensible default for almost all sharing |
| 1280 x 720 (720p) | 0.9 million | 0.44x | Screen recordings, messaging apps, weak connections |
| 854 x 480 (480p) | 0.4 million | 0.19x | Preview copies and very constrained situations |
Most video shared between people is watched on a phone. A phone screen cannot display 4K meaningfully, so a 4K file sent to a phone is wasting roughly three quarters of its bytes before compression is even considered. Downscaling to 1080p is usually invisible and frequently the only change needed.
Frame rate: cut it only when the content allows
Frame rate is where people over-optimise. Halving 60 fps to 30 fps is a large saving and looks fine for most content. Going below 24 fps introduces visible stutter that no bitrate can hide.
- Screen recordings of mostly static content tolerate low frame rates well, sometimes down to 15 fps.
- Talking-head video is fine at 30 fps and often at 24.
- Sport, fast camera movement and gameplay need 30 fps as an absolute floor and benefit from 60.
- Never increase frame rate during conversion. It duplicates frames, adding size without adding smoothness.
- Halve rather than choosing arbitrary values. Going from 60 to 30 is clean; 60 to 25 requires resampling and can introduce judder.
Codec choice and the compatibility tradeoff
| Codec | Efficiency vs H.264 | Encode speed | Compatibility |
|---|---|---|---|
| H.264 / AVC | baseline | Fast | Universal, plays everywhere |
| H.265 / HEVC | About 40 percent smaller | Slow | Good on modern devices, patchy in browsers |
| VP9 | About 35 percent smaller | Slow | Strong in browsers, weaker on consumer hardware |
| AV1 | About 50 percent smaller | Very slow | Growing, still inconsistent on older devices |
H.264 remains the correct default for anything you are sending to a person rather than publishing through a platform. The newer codecs are genuinely better, but a file that will not play is worth nothing regardless of how efficiently it was encoded. Where you control the playback environment, or the platform transcodes anyway, the efficiency gains are real and worth taking.
A working order of operations
- Trim first. Removing thirty seconds of dead footage from the start beats any encoding setting, and costs nothing in quality.
- Set resolution to what the viewer will actually use. For most sharing that is 1080p, for messaging apps 720p.
- Set frame rate to the lowest the content tolerates, usually 30, halving from the source where possible.
- Choose H.264 unless you know the destination supports something newer.
- Set the quality target and encode a 20 second sample rather than the whole file.
- Check the sample at full screen. If it holds up, run the full encode. If not, adjust one setting and sample again.
- Only then, if it is still too large, revisit resolution before dropping quality further.
What over-compression looks like
- Blocking in flat areas, most obvious in skies, walls and shadows during motion.
- Smearing during fast movement, where detail dissolves and reassembles a moment later.
- Banding in gradients, where a smooth sky becomes visible stripes.
- Mosquito noise, a shimmer around hard edges and text that appears and disappears between frames.
All four mean the encoder has run out of budget for the resolution it was given. The fix is usually to lower the resolution rather than to raise the bitrate, because fewer pixels described well beats more pixels described badly.
Common questions
Why did my file get larger after conversion?
You almost certainly set a bitrate higher than the source was encoded at. The encoder cannot add detail that is not there, so it faithfully reproduces the existing compression artefacts using more data. Check the source bitrate before setting a target.
Is it better to lower resolution or lower bitrate?
Resolution, in most cases. A clean 720p image generally looks better than a heavily compressed 1080p one at the same file size, especially on a phone where the extra pixels cannot be resolved anyway.
Does converting MP4 to MP4 do anything?
MP4 is a container, not a codec. Converting between two MP4 files can change the codec, resolution, bitrate and frame rate inside it. The extension staying the same tells you nothing about what happened.
How much can I realistically save?
A 4K 60 fps clip taken straight from a phone, downscaled to 1080p at 30 fps with a sensible quality target, commonly comes out between a quarter and a fifth of its original size with no visible difference on a phone screen.
Try it yourself
The settings described above are all adjustable in the tool. Files stay on your device; nothing is uploaded to a server.
Open the video converterRelated guides
- Audio Formats and Bitrates: Choosing Settings That Are Not GuessworkBitrate, sample rate and bit depth get confused constantly. Here is what each one controls, and the settings that make sense for speech, music and archiving.
- What the Quality Slider Really Does, and How to Set ItQuality 80 is not 80 percent of anything. Here is what the number actually controls, why it behaves differently on different images, and a repeatable way to find the lowest setting you can get away with.
- JPEG, PNG, WebP and AVIF: How to Choose the Right Image FormatFour formats cover almost every job on the web, and picking the wrong one costs you either file size or quality. This guide explains what each format actually does and when to reach for it.