The Bounce
You shot a two-minute video on your phone. A birthday clip for your mom. A walkthrough for a client. A funny thing the dog did.
You hit send, and:
The video is fine. The problem is that almost every way you have to *send* a video has a size limit, and modern phone video sails right past it. Here's why, and how to fix it in about two minutes.
What Each App Will Actually Accept
Before you shrink anything, it helps to know the target. These are the real per-file limits as of 2026:
Notice the pattern: the limit that bites isn't storage, it's the *channel*. A 30-second 4K clip from a recent iPhone can easily be 80–150 MB. That clears almost none of the bars above.
Why Phone Videos Are So Enormous
Your phone is recording like it's shooting a movie, because by default, it is.
Stack those defaults and a short clip balloons into something no inbox will take.
The Fix, From Fastest to Most Thorough
Option 1: Compress It (the 30-second answer)
Ninety percent of the time, this is all you need. A compressor re-encodes your video at a sensible bitrate and resolution, and the file shrinks 5–10x while looking essentially identical on a phone or laptop screen.
Drop your clip into the Video Compressor and aim for a target size. A 120 MB phone video becomes a 10–15 MB file that slides under Gmail's limit and even squeezes into WhatsApp. The viewer will not be able to tell the difference without pausing on a frame and squinting.
Option 2: Trim the Dead Weight
Half the size of most videos is footage nobody needs — the ten seconds of fumbling before the action starts, the long goodbye at the end, the part where you walked back to your desk.
Cut it before you send it. The Video Trimmer lets you clip to just the part that matters, which shrinks the file *and* spares your audience the boring bits. Trim first, compress second, and a clip that wouldn't fit anywhere often ends up small enough to text.
Option 3: Convert to a Friendlier Format
If your recipient says the video "won't open," the problem is usually the format, not the size. iPhones save as MOV (often with HEVC), which trips up Windows machines, older email clients, and some Android phones.
Re-encoding to a standard H.264 MP4 fixes both compatibility and size at once. Run an iPhone clip through MOV to MP4 and you get a universally playable file that's also meaningfully smaller. Sharing on the web instead of by email? MP4 to WebM shrinks it even further for browser playback.
Option 4: Stop Attaching, Start Linking
Some videos are simply too long to email no matter how hard you compress — a 45-minute recording is never going to be 20 MB without looking rough.
For those, don't fight the limit. Upload once to Google Drive, Dropbox, or iCloud Mail Drop and send the link. The recipient streams it instead of downloading a giant file, it plays on any device, and nothing bounces. Compression still helps here (smaller upload, faster streaming) — but the link is what gets it watched.
A Quick Decision Guide
"Won't Compressing Make It Look Bad?"
This is the fear that keeps people emailing 100 MB files, and it's mostly unfounded.
Compressing a video is not like texting a photo, where you watch it turn to mush. Modern codecs (H.264 and H.265) are extraordinarily good at keeping what your eye notices — sharp edges, faces, readable text — and discarding the imperceptible differences between adjacent pixels. At a reasonable bitrate, a compressed clip on a phone or laptop looks identical to the original to any normal viewer.
The mush you've *seen* comes from one specific place: letting your carrier compress it for you over MMS, where it gets hammered down to under a megabyte with zero finesse. Compressing it yourself first — to a sane size, with a real codec — is the difference between "looks great, fits anywhere" and "what am I even looking at."
The terminal version
If you'd rather do it yourself and have FFmpeg installed, this re-encodes to a tidy, shareable MP4:
```
ffmpeg -i input.mov -vf scale=-2:1080 -c:v libx264 -crf 26 -preset medium -c:a aac -b:a 128k output.mp4
```
That caps the height at 1080p and uses a higher CRF (26) for a small file. Lower the `-crf` to 23 if you want more quality, raise it to 28 for an even smaller file. It's the same math the Video Compressor runs for you if you'd rather skip the command line.
Bottom Line
Your phone records for the editing room. Your inbox, your texts, and your group chats want something far smaller. Those are different jobs, and the gap between them is why your video bounces.
Shrink before you send. Compress the clip, trim the dead air, or convert it to MP4 — whichever the situation calls for. Two minutes of work turns a file nobody can open into one that lands on the first try.
Which is the whole point of sending it.