Skip to main content
Participant
May 10, 2026
Question

H.264 Blu-ray export on Apple Silicon Macs not working

  • May 10, 2026
  • 1 reply
  • 7 views

Hello,

I am seeing what looks like a reproducible issue with H.264 Blu-ray export in Adobe Media Encoder on Apple Silicon Macs.

I tested this on the following machines, and all of them showed the same problem:

  • Mac mini (M4 Pro)
  • Mac mini (M4)
  • MacBook Air (M4)

OS:

  • macOS Sequoia

AME versions tested:

  • AME 2024
  • AME 2026

Using the factory H.264 Blu-ray preset, Media Encoder creates an .m4v file that is not playable even in VLC. Because it already fails there, this seems to be a problem with the exported file itself, not just a Blu-ray authoring issue.

I have not tested older Mac generations yet, but I can confirm that the same version of AME on Windows exports correctly.

My current workaround is to export a high-bitrate AVC file on Mac, move it to Windows, and re-encode it there before authoring. That works, but it is not practical for long-form projects.

I also checked one of the exported files with ffprobe, and it was detected as raw h264 with Duration: N/A and inconsistent timing information, which makes me suspect the exported stream may be malformed.

Has anyone else seen this, or is this a known issue with H.264 Blu-ray export on Apple Silicon Macs?

 

    1 reply

    EckiAME
    Community Manager
    Community Manager
    May 11, 2026

    This is very likely “as designed”.

    The .m4v output of AME's H.264 Blu-ray preset is a raw Annex B H.264 elementary stream with no container and no timestamps — designed as input for Adobe Encore, which adds both during muxing. It was never meant for direct playback. (Windows seems to handle these files more gracefully.)
     

    To make it playable, you can remux with ffmpeg (a light re-encode is required to generate timestamps):

    ffmpeg -f h264 -r 25 -i file.m4v -i file.wav \
    -c:v libx264 -crf 0 -preset ultrafast \
    -c:a copy output.mp4

    -crf 0 is lossless — quality is preserved.