M4V to MP4: 4 Ways to Convert on Mac (Lossless & DRM Notes)

By Hieu Dinh

M4V to MP4: 4 Ways to Convert on Mac (Lossless & DRM Notes)

You exported a video from iMovie, ripped a home recording, or pulled a file off an old iTunes library, and it landed on your drive with a .m4v extension. Now you want to upload it, edit it in a tool that doesn't like M4V, or just make sure it plays everywhere — so you start looking for a way to convert M4V to MP4. The frustrating part is that M4V looks almost identical to MP4, plays fine in QuickTime, and yet some apps still refuse to touch it.

Here's the good news up front: for most files, converting M4V to MP4 takes a few seconds and keeps 100% of the original quality, because the video inside is usually already in an MP4-friendly format. The bad news: a subset of M4V files — the ones you bought from the iTunes Store or Apple TV — are wrapped in FairPlay DRM, and no free converter on earth can legally or technically convert those. This guide walks through the four real methods for converting DRM-free M4V to MP4 on Mac, explains the DRM catch in plain terms, and tells you why simply renaming the file is a trap.

What Is M4V, and How Is It Different From MP4?

M4V is Apple's flavor of the MPEG-4 container. Under the hood it is essentially MP4 — same family, same building blocks. Apple created the .m4v extension primarily so that iTunes, the Apple TV app, and QuickTime could recognize their own video files and, when applicable, enforce FairPlay DRM copy protection on purchased and rented content.

The practical takeaway: the video stream inside an M4V is almost always H.264 or HEVC, and the audio is almost always AAC — exactly the codecs MP4 uses. So in most cases, converting M4V to MP4 doesn't require touching the video at all. You're just changing the wrapper.

There is one fork in the road, and it determines everything:

  • DRM-free M4V — files you exported yourself (iMovie, Final Cut, HandBrake), home videos, screen recordings, or anything not bought from Apple. These convert instantly and losslessly.
  • DRM-protected M4V — movies and TV shows purchased or rented from the iTunes Store / Apple TV. These carry FairPlay encryption. FFmpeg, HandBrake, and VLC will all refuse them, and that's by design. We'll cover this in detail below.

If you're not sure which you have, right-click the file in Finder, choose Get Info, and look at the source — or just try Method 1. If it fails with an error about an encrypted or protected stream, you have a DRM file.

Why Convert M4V to MP4?

If M4V is basically MP4, why bother converting at all? Compatibility. The .m4v extension trips up more tools than you'd expect:

  • Video editors — Premiere Pro, DaVinci Resolve, and some versions of Final Cut import .mp4 cleanly but choke on or mislabel .m4v. A plain MP4 removes the ambiguity.
  • Web and HTML5 — The <video> tag and most web platforms expect .mp4. An .m4v file may not play in a browser even when the codec is identical.
  • Social media and uploads — YouTube, Instagram, TikTok, and Slack all expect MP4. Some reject the M4V extension outright or transcode it badly.
  • Windows, Android, and smart TVs — MP4 is the universal default. M4V support outside the Apple ecosystem is spotty.
  • Avoiding the DRM assumption — Because M4V is associated with iTunes purchases, some apps treat every .m4v with suspicion. A clean MP4 sidesteps that.

If you plan to edit, share, upload, or play the file on anything other than an Apple device, converting M4V to MP4 is the path of least resistance. If your files came off an iPhone instead, see our guide to convert iPhone video for HEVC-specific tips.

M4V vs MP4: A Quick Comparison

Both M4V and MP4 are containers built on the same MPEG-4 base. The video and audio streams inside can be byte-for-byte identical. What differs is the extension, the ecosystem they're associated with, and — critically — whether DRM is involved.

FeatureM4VMP4
Base formatMPEG-4 (Apple variant)MPEG-4 (standard)
Video codecsH.264, HEVCH.264, HEVC, AV1, MPEG-4
Audio codecsAAC, AC3, DolbyAAC, AC3, MP3
Can carry FairPlay DRMYes (iTunes/Apple TV)No
QuickTime / Apple TVYesYes
Video editors (Premiere, Resolve)SometimesYes
Web / HTML5 playbackInconsistentYes
Windows / Android / smart TVLimitedYes

The short version: if your M4V is DRM-free and already H.264/HEVC + AAC — which covers nearly every M4V that isn't an iTunes purchase — you can convert to MP4 in seconds with zero quality loss. That's Method 1, and you should try it before anything else.

Method 1: Lossless Remux With FFmpeg (Seconds, No Re-Encoding)

Remuxing is the right way to convert M4V to MP4. Instead of decoding and re-encoding the video — which is slow and throws away quality — remuxing copies the existing video and audio streams straight into a new MP4 container. The output is bit-for-bit identical to the source, and it finishes about as fast as your disk can read the file.

This works precisely because M4V already holds H.264 or HEVC video with AAC audio, all of which MP4 supports natively. There is nothing to convert except the wrapper.

Install FFmpeg via Homebrew on macOS:

brew install ffmpeg

Then run:

ffmpeg -i input.m4v -c copy output.mp4

Breaking that down:

  • -i input.m4v — your source file
  • -c copy — copy all streams with no re-encoding (this is what makes it lossless and fast)
  • output.mp4 — the destination

A full-length movie usually finishes in well under a minute. If you want to be explicit about pulling every track — video, audio, and any chapters — add -map 0:

ffmpeg -i input.m4v -c copy -map 0 output.mp4

If this command errors out with a message about an encrypted, protected, or unsupported stream, stop — you almost certainly have a DRM-protected M4V. Skip to the DRM section below; no amount of FFmpeg flags will fix it.

When You Actually Need to Re-Encode

Remuxing is the right call 95% of the time. But if your M4V uses an older or unusual codec that the target device can't play, or you want to shrink the file at the same time, you can re-encode. On Apple Silicon, use the hardware encoder for a big speed boost:

ffmpeg -i input.m4v -c:v hevc_videotoolbox -q:v 65 -c:a aac output.mp4

This uses the built-in VideoToolbox HEVC encoder on M-series Macs, which is dramatically faster than software encoding. Lower -q:v means higher quality and a larger file. For a software H.264 re-encode with fine-grained quality control:

ffmpeg -i input.m4v -c:v libx264 -crf 20 -c:a aac -b:a 192k output.mp4

The -crf 20 controls quality (range 0–51, lower is better); 18–23 is visually lossless for most content. Reach for re-encoding only when remuxing won't do — it's slower and always sheds a little quality.

Method 2: HandBrake (Free GUI, Most Reliable)

HandBrake is the most popular free, open-source video converter, and it's perfect if you'd rather not touch a terminal. It runs on macOS, Windows, and Linux and handles M4V without issue — as long as the file isn't DRM-protected.

How to convert M4V to MP4 in HandBrake:

  1. Open HandBrake and drag your M4V file into the window.
  2. Under Summary, set Format to MP4.
  3. Pick a preset. Fast 1080p30 is a sensible default for HD video.
  4. Use the Audio and Subtitles tabs to choose which tracks to keep.
  5. Set a destination and click Start.

The one catch with HandBrake is that it always re-encodes. Even when your M4V is already H.264, HandBrake decodes it and produces a fresh H.264 stream, which takes time and shaves off a little quality. That makes HandBrake ideal when you want to reduce file size as part of the conversion or when you need a friendly GUI and don't mind the wait. For pure lossless output, use Method 1. If you're comparing tools, our roundup of the best video converter for Mac covers more options.

Method 3: VLC Media Player (Already Installed)

VLC isn't just a player — it converts too. It's not the fastest or highest-quality option, but it's already on most Macs, so it's worth knowing. Like HandBrake, VLC re-encodes, and it will refuse DRM-protected files.

  1. Open VLC and go to File → Convert / Stream.
  2. Drag in your M4V file.
  3. Under Choose Profile, pick Video - H.264 + MP3 (MP4).
  4. Click Save as File, choose a destination, and hit Save.

VLC's conversion is basic, and it won't preserve multiple audio tracks or chapters as cleanly as FFmpeg. Use it for quick one-off jobs when you don't want to install anything new. For anything large or important, FFmpeg or HandBrake will treat you better.

Method 4: iMovie Export (No Extra Software)

If your M4V originated from your own footage and you have iMovie installed (it's free on every Mac), you can re-export it as MP4 without any extra tools. This is the most approachable option for non-technical users, though it does re-encode.

  1. Open iMovie and create a new project.
  2. Drag your M4V file into the timeline.
  3. Click the Share button (top-right) and choose Export File.
  4. Set the format and quality, then click Next and save.

iMovie outputs a .mp4 file using H.264 or HEVC. The downside is the same as HandBrake and VLC — it re-encodes, so you lose a little quality and spend more time than a remux would. But if you're already editing in iMovie, exporting straight to MP4 is the natural finish. Note that iMovie, like every consumer tool, will not open DRM-protected M4V from the iTunes Store.

A Word on Online Converters

Online M4V to MP4 converters — CloudConvert, Convertio, FreeConvert, Zamzar — all work the same way: upload, wait, download. For a tiny clip that's fine, but for anything substantial there are real drawbacks. Free tiers cap uploads at 100–500 MB, so full-length videos won't fit. Round-tripping a large file over a home connection is slower than converting locally. And your video gets uploaded to a third-party server, which is a hard no for anything private or confidential. They also can't help with DRM files either. If you must use one, stick to reputable services and never upload anything sensitive.

The DRM Catch: Why Some M4V Files Won't Convert

This is the part most M4V-to-MP4 guides skip, and it's the single most important thing to understand. Movies and TV shows you purchased or rented from the iTunes Store or the Apple TV app are protected by Apple's FairPlay DRM. The video stream is encrypted, and the decryption keys are tied to your Apple ID and authorized devices.

What this means in practice:

  • FFmpeg will fail. The -c copy remux throws an error about an encrypted or unsupported stream.
  • HandBrake will fail. It reports that it can't read the title or that the source is protected.
  • VLC and iMovie will fail too. None of these tools can decrypt FairPlay content.

This is not a bug or a missing flag — it's copy protection working exactly as intended. Stripping FairPlay DRM to convert purchased content also runs against the iTunes/Apple TV terms of service and, in many regions, the law. So the honest answer is: DRM-protected M4V cannot be converted to MP4 with these free, legitimate tools.

The methods in this guide are for DRM-free M4V — your own iMovie and Final Cut exports, HandBrake outputs, home videos, screen recordings, and any video that didn't come from an Apple purchase. Those are the overwhelming majority of the .m4v files people actually need to convert, and they all work perfectly with Method 1.

Can You Just Rename .m4v to .mp4?

You'll see this advice everywhere, and it's tempting: just change the file extension from .m4v to .mp4 and you're done. Because the two containers are so closely related, renaming sometimes appears to work — the file plays, QuickTime opens it, and everything looks fine.

But it's not a real conversion, and it can quietly break things:

  • Metadata and chapters can be misread or dropped, because the player now expects standard MP4 atom structures rather than Apple's M4V layout.
  • Subtitles embedded in the M4V may fail to load.
  • Strict players and editors validate the actual file structure, not just the extension, and will reject the renamed file anyway.
  • DRM files don't care. Renaming a FairPlay-protected M4V does nothing — it's still encrypted and still won't play outside Apple's apps.

In short: renaming gambles on the file structure happening to be compatible. A proper remux (ffmpeg -i input.m4v -c copy output.mp4) rewrites the container correctly, takes the same few seconds, and guarantees a clean, standards-compliant MP4. Always remux instead of renaming.

Compress After Converting With Compresto

Once you have a clean MP4, the next question is usually whether you can make it smaller. Exports, screen recordings, and home videos are often far larger than they need to be — especially when you're about to upload, email, or share them over Slack.

Compresto is a native macOS app built for exactly this. Drop your newly converted MP4 onto the window, and Compresto uses hardware-accelerated H.264 or HEVC encoding on Apple Silicon to shrink the file — typically by 60–90% — without visibly affecting quality. It's fast, fully local (nothing is uploaded to any server, which matters for private footage), and it handles batches of dozens of files at once.

Compresto compresses videos, images, PDFs, and GIFs, so it covers your whole post-conversion cleanup in one place. It's the easiest way to go from "just converted a 2 GB M4V" to "ready to share a 300 MB MP4."

Download Compresto free for macOS.

Frequently Asked Questions

Is M4V the same as MP4?

Nearly. M4V is Apple's variant of the MPEG-4 container — the same base format MP4 uses — with the .m4v extension and optional FairPlay DRM. The video and audio inside (usually H.264/HEVC + AAC) are identical to what an MP4 holds. The main differences are the extension, the Apple-ecosystem association, and the possibility of DRM. For DRM-free files, converting M4V to MP4 is just a container swap.

Can I just rename .m4v to .mp4?

It sometimes plays, but it's not a safe conversion. Renaming only changes the extension, not the underlying file structure, so metadata, chapters, and subtitles can break, and strict editors may reject the file. A proper remux with ffmpeg -i input.m4v -c copy output.mp4 takes the same few seconds and produces a genuinely valid MP4. And renaming does nothing for DRM-protected files.

Does converting M4V to MP4 lose quality?

Not if you remux. Running ffmpeg -i input.m4v -c copy output.mp4 copies the streams bit-for-bit into a new container with zero quality loss. Only re-encoding — HandBrake, VLC, iMovie, and most online tools — causes any quality loss, because the video is decompressed and recompressed. Try the lossless remux first.

Why won't my M4V file convert? (DRM)

The most common reason is FairPlay DRM. Movies and TV shows bought or rented from the iTunes Store or Apple TV app are encrypted and tied to your Apple ID, so FFmpeg, HandBrake, VLC, and iMovie will all refuse them. This is copy protection working as designed, and stripping it violates Apple's terms. Only DRM-free M4V — your own exports, recordings, and HandBrake outputs — can be converted with these tools.

What's the best free M4V to MP4 converter for Mac?

For lossless conversion, use FFmpeg via Homebrew — it remuxes in seconds without re-encoding. For a GUI with built-in compression, use HandBrake. Both are free, open source, and excellent. iMovie works too if you already have your footage there. If you also work with other formats, see our MOV to MP4 converter for Mac and WMV to MP4 guides.

How do I convert MP4 back to M4V or MOV?

Going the other direction is just as easy with a remux. To wrap an MP4's streams into a QuickTime container, see our MP4 to MOV guide — the same -c copy lossless approach applies. M4V output is rarely needed since MP4 is more universal, but the principle is identical.

Conclusion

Converting M4V to MP4 on Mac is usually trivial: a one-line FFmpeg remux rewrites the container in seconds with zero quality loss, because the video inside is almost always already MP4-ready. HandBrake, VLC, and iMovie give you re-encoding options when you want to shrink the file or work entirely in a GUI. The one thing to watch for is FairPlay DRM — if your M4V came from an iTunes or Apple TV purchase, no free tool can convert it, and that's by design. And whatever you do, remux rather than just renaming the extension.

Once your MP4 is ready, Compresto is the fastest way to shrink it for sharing, uploading, or archiving — all natively on your Mac, all without uploading your files anywhere.

Download Compresto for macOS and handle conversion, compression, and cleanup in one place.

Ready to compress your files? Join thousands of creators using Compresto ⚡