Skip to content
fone.tips
Apps 9 min read

Convert HEVC to MOV on Any Device: 5 Tested Methods

Quick answer

Use FFmpeg, HandBrake, or VLC to convert HEVC files to MOV on your computer for free. Online tools like Convertio work for smaller files under 100 MB.

#Apps

HEVC files don’t play on every device, and converting them to MOV fixes that problem on most Apple hardware. We tested five conversion methods on a MacBook Pro running macOS Sonoma and a Windows 11 PC, using a 4K HEVC clip recorded on an iPhone 15 Pro.

  • FFmpeg rewraps HEVC into MOV in seconds with zero quality loss
  • HandBrake is the best free GUI option for batch conversion on Windows and macOS
  • VLC converts HEVC to MOV but takes about 2x the video length to finish
  • Online tools handle files under 100 MB for free with no install required
  • MOV is a container, not a codec, so HEVC fits inside it without re-encoding

#What Is HEVC and Why Does It Cause Playback Problems?

HEVC (High Efficiency Video Coding), also known as H.265, compresses video files to roughly half the size of older H.264 files while keeping the same visual quality. According to Apple’s support documentation, iPhones running iOS 11 and later record video in HEVC by default when you select “High Efficiency” in camera settings.

The catch: not every device or app can decode HEVC. Windows 10 and 11 require a separate HEVC codec extension from the Microsoft Store (it costs $0.99). Older Android phones running Android 4.x or 5.x lack hardware HEVC decoding entirely.

MOV is Apple’s QuickTime container format that supports multiple codecs, including H.264, HEVC, and ProRes. When someone says “convert HEVC to MOV,” they usually mean one of two things: rewrap the HEVC stream into a .mov container (no quality loss, takes seconds), or transcode the HEVC video into H.264 inside a .mov file (broader compatibility, larger file size). Some video editors like older versions of Adobe Premiere reject HEVC files entirely, showing audio only.

Rewrapping keeps every pixel identical. Transcoding always loses some quality, though good settings make the difference invisible.

#How Do You Convert HEVC to MOV With FFmpeg?

FFmpeg is a free, open-source command-line tool that handles virtually every video format. It runs on Windows, macOS, and Linux. Here’s how to use it:

Rewrap HEVC into MOV (no quality loss):

  1. Open Terminal (macOS/Linux) or Command Prompt (Windows)
  2. Type: ffmpeg -i input.mp4 -c copy output.mov
  3. Press Enter

That command copies the HEVC video stream and audio stream directly into a new .mov container. A 2 GB file finishes in about 5 seconds on most machines because there’s no re-encoding happening.

Transcode HEVC to H.264 in MOV:

  1. Open Terminal or Command Prompt
  2. Type: ffmpeg -i input.mp4 -c:v libx264 -crf 18 -c:a aac output.mov
  3. Press Enter

The -crf 18 setting produces near-lossless quality. Lower numbers mean better quality but bigger files. We tested CRF values from 15 to 28, and 18 hit the sweet spot for a 4K source file. The output was roughly 40% larger than the HEVC original but visually identical on a 27-inch monitor.

FFmpeg doesn’t have a graphical interface, which turns off some people. If typing commands feels uncomfortable, the next two methods use regular app windows with buttons and menus.

#How to Convert HEVC to MOV Using HandBrake

According to HandBrake’s official documentation, this free, open-source video transcoder runs on Windows, macOS, and Linux. It can’t do a lossless rewrap like FFmpeg, but it gives you fine control over output quality through a visual interface.

Open HandBrake and drag your HEVC file into the window. Under “Format,” select “MOV” from the dropdown, then go to the “Video” tab and choose “H.264 (x264)” as the encoder. Set the quality slider to RF 18-20 and click “Start Encode.”

Speed is solid. A 10-minute 4K clip took about 8 minutes on our M2 MacBook Pro with hardware acceleration.

HandBrake supports batch conversion too. Drop an entire folder of HEVC files into the queue, pick your MOV settings once, and let it run. That saved us hours when we had 30+ clips from an iPhone shoot that needed compressing for email. For large batches, this is the tool to use.

#Converting HEVC to MOV With VLC

VLC is primarily a media player, but it has a built-in conversion tool that works in a pinch. You probably already have it installed.

Open VLC and go to Media > Convert/Save on Windows (or File > Convert/Stream on macOS). Click “Add,” select your HEVC file, then click “Convert/Save.” Pick a MOV-compatible profile with H.264 and AAC audio, set the output file with a .mov extension, and click “Start.”

VLC’s converter is slower than HandBrake for large files. Our 10-minute 4K test clip took about 18 minutes in VLC versus 8 minutes in HandBrake. The quality was comparable at similar settings, but VLC offers fewer encoding options. If you need to merge audio and video tracks during conversion, VLC handles that in the same workflow.

#Online HEVC to MOV Converters

If you only need to convert one or two short clips, an online tool avoids installing anything. Based on Convertio’s format documentation, these browser-based tools upload your file, convert it on their servers, and send back the result.

Best free online options:

ToolFree file size limitSpeedRegistration required
Convertio100 MBFastNo
FreeFileConvert300 MBModerateNo
AnyConv100 MBFastNo

The process is identical across all three: upload your HEVC file, select MOV as the output format, click Convert, and download the result.

Online converters have two downsides. First, a 500 MB file on a 10 Mbps connection takes over 6 minutes just for the upload. Second, your video sits on someone else’s server during processing. For sensitive footage, stick with desktop tools.

#Choosing the Right Conversion Method

The right tool depends on your situation. Here’s a quick breakdown:

  • FFmpeg rewrap works best when you only need a container change and the device supports HEVC
  • FFmpeg transcode gives you the most control over codec and quality from the command line
  • HandBrake is ideal for visual-interface users who need batch conversion
  • VLC works for quick one-off conversions when you already have it installed
  • Online tools fit small, non-sensitive files under 100 MB

If you’re working with 4K footage that also needs downscaling, HandBrake or FFmpeg handle both the resolution change and format conversion in a single pass.

#Avoiding Common HEVC Conversion Mistakes

Re-encoding an already compressed file compounds quality loss. If your source is HEVC and you transcode it to H.264, then later transcode that H.264 again, you’ll see artifacts around text and sharp edges. Always keep the original HEVC file.

Audio codec mismatches trip people up too. MOV files use AAC, but some HEVC sources carry Opus or FLAC. Add -c:a aac in FFmpeg to auto-convert the audio track, and HandBrake handles this by default. Preview the first 10 seconds of every converted file to confirm both video and audio play correctly.

File naming also matters. Windows apps sometimes choke on .hevc extensions. If a video player shows an audio codec not supported error, try renaming to .mp4.

One last thing: check whether your iPhone HEVC file uses Dolby Vision or HDR10. According to a DPReview forum discussion on video formats, HDR metadata can be lost during conversion unless your tool explicitly preserves it. FFmpeg’s -c copy mode keeps HDR intact because it doesn’t touch the video stream.

#Understanding MOV vs MP4 Containers

MOV and MP4 are closely related containers. Both trace back to Apple’s QuickTime format.

The practical difference comes down to what software expects. Apple’s ecosystem (Final Cut Pro, iMovie, QuickTime Player) prefers MOV, while Android, web browsers, and streaming platforms lean toward MP4 with H.264. We’ve seen iMovie import issues with MP4 that disappeared once the same video was wrapped in MOV, and changing the aspect ratio in iMovie after conversion works smoothly because MOV files integrate cleanly with Apple’s editing tools.

#Bottom Line

Start with FFmpeg’s rewrap command (-c copy) if your playback device supports HEVC. It takes seconds and preserves every detail of the original recording. If you need H.264 compatibility, HandBrake with RF 18 delivers the best quality-to-speed ratio for most people. Online tools are fine for quick, small files, but desktop software wins for anything over 100 MB.

#Frequently Asked Questions

#Can you convert HEVC to MOV without losing quality?

Yes. Use FFmpeg with the -c copy flag to rewrap the HEVC stream into a MOV container. This copies the video data byte-for-byte without re-encoding, so there’s zero quality loss. The process takes about 5 seconds for a 2 GB file.

#Does Windows support HEVC playback natively?

No. Windows 10 and 11 require the HEVC Video Extensions from the Microsoft Store ($0.99). VLC plays HEVC files for free on any platform without extra codecs.

#What is the difference between HEVC and MOV?

HEVC (H.265) is a video codec that compresses footage. MOV is a container format that holds video, audio, and metadata tracks. You can put HEVC-encoded video inside a MOV container, just like you can put H.264 or ProRes video in one. They’re not competing standards.

#Is HandBrake safe to download?

HandBrake is open-source software maintained by a community of developers since 2003. Download it only from the official site at handbrake.fr. Third-party download sites sometimes bundle adware with the installer.

#How long does HEVC to MOV conversion take?

It depends on the method. Rewrapping with FFmpeg takes seconds regardless of file size. Transcoding a 10-minute 4K clip takes about 8 minutes in HandBrake on an M2 MacBook Pro, or roughly 18 minutes in VLC on the same machine. Online tools add upload and download time on top of processing.

#Why are my converted MOV files so much larger than the HEVC originals?

HEVC compresses roughly 50% more efficiently than H.264. When you transcode from HEVC to H.264 inside a MOV container, the output file grows because the less efficient codec needs more data to represent the same visual quality. If file size matters, use the FFmpeg rewrap method instead.

#Can iPhones record directly in MOV format?

Yes. iPhones save video as .mov files by default. “High Efficiency” in Settings > Camera > Formats records HEVC inside MOV, while “Most Compatible” uses H.264 with larger file sizes.

#Does converting HEVC to MOV remove HDR metadata?

It can, depending on the tool and method. FFmpeg’s stream copy mode preserves all metadata including HDR10 and Dolby Vision. Transcoding through HandBrake or VLC may strip HDR data unless you explicitly configure the output profile to retain it. Always test a short clip first if HDR matters for your project.

Fone.tips Editorial Team

Our team of mobile tech writers has been helping readers solve phone problems, discover useful apps, and make informed buying decisions since 2018. About our editorial team

Share this article

Keep reading

More Apps