FormatDrop
How-To Guide

How to Convert MP4 to HEVC (H.265)

H.265 (HEVC) is the successor to H.264 — at the same visual quality, H.265 produces files roughly 40–50% smaller. Converting your MP4 library from H.264 to H.265 cuts storage requirements in half while maintaining identical perceived quality. H.265 is natively supported on Apple devices, Windows 10+, Android 5+, and most modern smart TVs.

Step-by-step instructions

  1. 1

    FFmpeg with software encoding

    High quality: `ffmpeg -i input.mp4 -c:v libx265 -crf 22 -c:a copy output.mp4`. CRF 22 is roughly equivalent visual quality to H.264 CRF 18. Lower CRF = better quality, larger file. For 4K: use `-preset slow` for better compression at the cost of encode time. For streaming: add `-movflags +faststart` to put the MP4 index at the start of the file. Audio is copied directly (-c:a copy) since the container doesn't change.

    Go to converter
  2. 2

    FFmpeg with hardware acceleration (NVIDIA)

    NVIDIA GPU encoding (NVENC) is 5–10× faster than CPU: `ffmpeg -i input.mp4 -c:v hevc_nvenc -rc:v vbr -cq:v 22 -c:a copy output.mp4`. Requires an NVIDIA GPU with NVENC support (GeForce GTX 950+). For quality tuning: `-cq:v` is analogous to CRF (lower = better). NVENC produces slightly larger files than libx265 at equivalent perceived quality but encodes in real-time or faster.

  3. 3

    FFmpeg with Apple VideoToolbox (Mac M1/M2/M3)

    Apple Silicon hardware encoder: `ffmpeg -i input.mp4 -c:v hevc_videotoolbox -q:v 60 -c:a copy output.mp4`. On Apple Silicon, this uses the dedicated media engine and is extremely fast (often 3–10× real-time). `-q:v 60` is a rough equivalent to medium quality (0–100 scale, higher = better). For a more controlled bitrate: `-b:v 4M` for 4 Mbps. Verify availability: `ffmpeg -encoders | grep hevc`.

  4. 4

    HandBrake (GUI, cross-platform)

    Open HandBrake. Select the MP4 source. In the Video tab, choose H.265 (x265) as the codec. Set RF (Constant Quality) to 22 — HandBrake's RF is equivalent to FFmpeg's CRF. Select a preset: 'Slow' gives better compression, 'Fast' encodes quicker. In the Audio tab, set to 'Auto Passthru' to copy existing audio without re-encoding. Click 'Start Encode'. HandBrake shows estimated file size and remaining time during encoding.

Why convert MP4 to HEVC?

H.264 was state-of-the-art in 2003. H.265 encodes the same video quality into half the data — cutting storage costs, upload times, and streaming bandwidth in half.

Your files never leave your device

FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.

Frequently asked questions

What CRF value should I use for H.265?
CRF 22–28 is the typical range for H.265. CRF 22 is 'visually lossless' — most viewers cannot distinguish it from the uncompressed source. CRF 28 is 'good quality' with noticeable but acceptable compression. As a rough mapping from H.264: H.265 CRF 22 ≈ H.264 CRF 18 in perceived quality. For archiving, use CRF 22–24. For streaming where bandwidth matters, CRF 26–28. Never use CRF above 35 for anything that will be viewed on a large screen.
Does H.265 play on all devices?
H.265 plays natively on: iPhones 6 and later, Apple TV 4th gen+, iPads from 2015+, Android 5.0+, Windows 10+ (with Media Player or VLC), most smart TVs from 2015+, PlayStation 4 Pro and 5, and Xbox One S/X/Series. Older devices without hardware H.265 decoding can still play it via software, but may struggle with high-resolution 4K files. VLC plays H.265 via software decoding on virtually any device.
How long does it take to convert a 1-hour MP4 to H.265?
Software encoding (libx265): 2–4 hours for 1-hour 1080p video on a modern 8-core CPU with CRF 22. Hardware encoding (NVENC, VideoToolbox): 10–20 minutes for the same file. For large batch conversions, hardware encoding is strongly recommended. You can also reduce preset to 'ultrafast' in software encoding (significantly worse compression but 5–10× faster) or use a CRF-equivalent quality setting on NVENC.
Convert MP4 to HEVC Now — Free

No account. No upload. Works in any browser.