How to Reduce Video File Size: 7 Proven Methods That Work
Comprehensive guide to reducing video file sizes. Covers resolution reduction, bitrate adjustment, codec choice (H.265/AV1), audio track stripping, trimming, and the quality-size tradeoff.
Emma Wilson·February 19, 2026·10 min read
The File Size Problem
A single 4K video from a modern phone can exceed 1 GB for just a few minutes of footage. A 2-hour movie in high quality can balloon to 20-40 GB. And if you are a content creator working with raw footage, storage costs spiral quickly.
Whether you need to shrink a video to fit an email attachment limit, free up storage space, upload faster to social media, or reduce bandwidth costs for streaming, understanding how to reduce video file size without destroying quality is an essential skill.
This guide presents seven proven methods, ranked from most effective to least, along with the exact settings and commands to implement each one. Every method comes with realistic expectations — how much space you will save and how much quality you will lose.
Dashboard showing video file sizes before and after compression
The -tag:v hvc1 flag ensures compatibility with Apple devices. H.265 at CRF 24 is roughly equivalent to H.264 at CRF 18 in terms of visual quality, at half the file size.
Convert to AV1 (Maximum Compression)
AV1 achieves about 30% better compression than H.265, but encoding is significantly slower:
Pro Tip: If encoding time matters (and it usually does), H.265 offers the best balance of compression, speed, and compatibility. AV1 provides better compression but can take 5-20x longer to encode. Use AV1 for archival or content that will be viewed millions of times (where the encoding cost is amortized). For everyday use, H.265 is the sweet spot.
Method 2: Reduce Resolution
Downscaling resolution has a massive impact on file size. Going from 4K to 1080p cuts the pixel count by 75%, and the file size typically drops by 60-70%.
For understanding when different frame rates are appropriate, read our frame rate guide.
Pro Tip: Do not reduce frame rate for gameplay footage, sports, or fast-motion content — the motion blur and judder at lower frame rates is very noticeable. Frame rate reduction works best for talking-head videos, presentations, tutorials, and relatively static content.
Method 5: Trim Unnecessary Content
Often the simplest method: cut out the parts you do not need. Intros, outros, pauses, and off-topic sections can account for 20-40% of a video's duration.
# Keep only from 30 seconds to 5 minutes
ffmpeg -ss 00:00:30 -to 00:05:00 -i input.mp4 \
-c copy -movflags +faststart trimmed.mp4
Our video trimmer provides a visual timeline for precise trimming. Since this uses -c copy, it happens instantly with no re-encoding.
Method 6: Optimize Audio Tracks
Audio typically accounts for 5-15% of video file size, but optimizing it adds up, especially for long recordings:
Reduce Audio Bitrate
# Lower audio bitrate from 320k to 128k (stereo)
ffmpeg -i input.mp4 -c:v copy -c:a aac -b:a 128k output.mp4
# Use 96k for voice/podcast content
ffmpeg -i input.mp4 -c:v copy -c:a aac -b:a 96k output.mp4
Convert Stereo to Mono
For content where stereo is unnecessary (lectures, podcasts, meetings):
Choose your target: small file, balanced, or high quality.
The compressor automatically selects the best codec, resolution, and bitrate.
Download the compressed video.
This is the fastest method for non-technical users and produces excellent results. The compressor intelligently analyzes your content and applies the optimal combination of the methods described in this guide.
Real-World Compression Results
Here is what you can expect when applying these methods to a typical 10-minute 1080p video (originally 800 MB in H.264):
Hardware encoding is 5-10x faster than software encoding but produces slightly larger files at the same quality. It is ideal for real-time processing or when you have many files to compress.
Summary
Reducing video file size is about making informed trade-offs. The seven methods, ranked by impact:
Switch to a modern codec (H.265/AV1) — 40-60% reduction, no visible quality loss
For most people, method 1 (modern codec) combined with method 3 (sensible CRF) delivers the best results. Use our online video compressor for a one-click solution, or the FFmpeg commands in this guide for full control over every parameter.
video compressionfile sizeH.265AV1bitrateencodingoptimization
About the Author
Emma Wilson
Digital media specialist with expertise in audio engineering, podcast production, and ebook publishing workflows.