Video·6 min read

Your Video Is Too Big to Email. Here's the 2-Minute Fix.

Gmail bounces anything over 25 MB. A text message compresses your video into mush. Here's why phone videos are so huge, what every app's real size limit is, and the fastest way to shrink yours to fit — without it looking terrible.

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:

  • Gmail tells you the attachment is too large and offers to "upload to Drive" instead.
  • Your text message goes through, but the video that arrives looks like it was filmed through a frosted shower door.
  • WhatsApp refuses it outright.
  • The recipient says "the link won't open" and you both give up.
  • 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:

  • Gmail: 25 MB. Anything bigger auto-converts to a Google Drive link.
  • Outlook / Hotmail: 20 MB (then it pushes you to OneDrive).
  • iCloud / Apple Mail: 20 MB attached, or up to 5 GB via a Mail Drop *link*.
  • Yahoo Mail: 25 MB.
  • SMS / MMS (green-bubble texts): often 1 MB or less. Your carrier crushes the video to fit, which is exactly why texted videos look so bad.
  • iMessage (blue bubble): generous, but it silently recompresses video before sending — so the recipient rarely gets full quality anyway.
  • WhatsApp: ~16 MB per video.
  • Discord: 10 MB on a free account (more with Nitro).
  • 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.

  • 4K resolution. Four times the pixels of 1080p, for four times the file size — on footage most people will watch on a 6-inch screen.
  • 60 frames per second. Great for slow-motion sports. Pointless for your mom's birthday. It roughly doubles the size versus 30fps.
  • High bitrate. Phones record at 50–100 Mbps to leave room for editing. The final "watch once" clip needs a fraction of that.
  • HEVC / H.265. Efficient *and* a compatibility headache — some older devices and email clients can't even play it, so they treat it like a broken attachment.
  • 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

  • Short clip, just over the limit? Compress it. Done in 30 seconds.
  • Long clip with a slow start? Trim, then compress.
  • "It won't open on my computer"? Convert MOV/HEVC to MP4.
  • Genuinely long video (10+ minutes)? Upload and send a link.
  • "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.