-
-
Notifications
You must be signed in to change notification settings - Fork 61
HDR10 Plus Metadata Extraction
Chris Griffith edited this page Nov 2, 2022
·
3 revisions
You will have to download a copy of hdr10plus_tool from quietviod’s.
Check to make sure your video has HDR10+ information it can read.
ffmpeg -loglevel panic -i input.mkv -map 0:v:0 -c:v copy -vbsf hevc_mp4toannexb -f hevc - | hdr10plus_tool --verify extract -
It should produce a nice message stating there is HDR10+ metadata.
Dynamic HDR10+ metadata detected.
Once you confirmed it exists, extract it to a json file
ffmpeg -i input.mkv -c:v copy -vbsf hevc_mp4toannexb -f hevc - | hdr10plus_tool extract -o metadata.json -
This Wiki is a Work In Progress