Skip to content

Convert HEVC to H.264 on Windows: 3 Methods

Convert HEVC to H.264 on Windows with GetCompress, Clipchamp, or FFmpeg. Get playable H.264 MP4 for older PCs and upload tools.

By Petr Samokhin

iPhone AirDrops and newer camera exports often arrive as HEVC (H.265) MOV or MP4. Older Windows laptops, some LMS tools, and strict upload pipelines expect H.264 instead. You notice when Movies & TV shows a codec error, when SharePoint preview fails, or when a client on an older PC cannot scrub the timeline.

Three solid routes cover most jobs: GetCompress for a local batch with size control, Clipchamp for a single export, and FFmpeg when you want exact flags or a folder script.

Why convert HEVC to H.264

HEVC compresses more efficiently than H.264 at the same visible quality. H.264 remains the safe choice for unknown recipients and corporate machines that lag on codec updates. Re-encoding usually makes the file larger unless you also trim or lower resolution.

HEVC (H.265)H.264 (AVC)
Common sourceiPhone HEVC, newer camerasWeb uploads, broad Windows playback
File size at same qualityUsually smallerUsually larger
CompatibilityGood on recent devicesUniversal on Windows apps

See H.264 vs H.265 codecs for when keeping HEVC still makes sense. For container changes without a codec swap, see MOV to MP4 on Windows .

Method 1: GetCompress

Best for: iPhone or camera HEVC folders, mixed formats, and portals that list a hard megabyte cap.

GetCompress main window with videos queued and video settings open, including quality, target size, resolution, and format options
  1. Open GetCompress and drop one HEVC file or a folder into the queue.
  2. Choose MP4 with H.264 (or H.264 output) so older Windows players can open it.
  3. Trim start and end in the preview if the recording has dead air.
  4. Pick a quality level (Original, High, Medium, Balanced, or Low) and resolution, or set an exact target file size when SharePoint or a form states a megabyte limit (video only).
  5. Export and drag the result into Teams, Mail, or the upload field.

Processing stays on your PC. Save a preset such as “1080p H.264 client” or “720p H.264 Teams” so next time the same job takes a few clicks.

Method 2: Export in Clipchamp

Best for: One or two HEVC clips Clipchamp can import.

  1. Open the file in Clipchamp (built into Windows 11).
  2. Trim the timeline if needed.
  3. Export at 1080p (or 720p for chat attachments).

Export produces H.264 video. Expect a larger file than the HEVC original unless you choose 720p.

Limitation: No folder batch with CRF control. If the export is still too large, trim more or move to Method 1 or 3.

Method 3: Convert with FFmpeg

Best for: Repeatable settings, folder batches, and CRF-style quality control.

Install FFmpeg with winget if needed:

winget install --id Gyan.FFmpeg -e

Then:

ffmpeg -i input.mov -c:v libx264 -crf 22 -preset medium `
 -c:a aac -b:a 128k -movflags +faststart output.mp4

Check the source codec:

ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of csv=p=0 input.mov

Batch MOV files in a folder:

mkdir h264-out
Get-ChildItem *.mov | ForEach-Object {
 ffmpeg -i $_.Name -c:v libx264 -crf 22 -preset medium `
 -c:a aac -b:a 128k -movflags +faststart `
 "h264-out\$($_.BaseName).mp4"
}
FlagPlain meaning
-crf 22Quality (lower number = better, bigger file; try 20 to 26)
-preset mediumSpeed versus compression tradeoff
-movflags +faststartBetter for web playback

Limitation: You maintain the commands yourself. Slow encodes on older laptops are normal with software libx264; use -preset veryfast for drafts.

Which method should you use

SituationStart here
Hard MB cap, recurring sends, or a batchGetCompress
One Clipchamp-friendly clipClipchamp
Scripts, CI, or exact encoder flagsFFmpeg

If the blocker is megabytes after conversion, see how to compress video on Windows .

When Clipchamp alone is enough

Clipchamp can finish one file when a trim and a 720p or 1080p export lands under the limit and plays on the recipient’s PC.

GetCompress also works well for that job. It also covers AirDrop folders of HEVC phone clips, the same H.264 preset every week, preview and trim in one place, or an exact video target file size that Clipchamp export tiers cannot type. It does not replace Premiere or a broadcast packaging suite. For the Mac path, see convert HEVC to H.264 on Mac .