View Single Post
Old 29th March 2020, 12:24   #1584  |  Link
Mzvasturbo
Registered User
 
Join Date: Dec 2019
Posts: 16
Quote:
Originally Posted by Atlantis View Post
Mzvasturbo, could you please give a step by step detail how to encode a HDR10+ file?
If you actualy have a mkv remux of video with HDR10+ metadata you must parse it with
HDR10+ parser https://github.com/quietvoid/hdr10plus_parser/releases

You can do it with ffmpeg https://video.stackexchange.com/ques...peg-in-windows

Command in cmd looks like this

ffmpeg -i "C:\video rip\Test.mkv" -c:v copy -vbsf hevc_mp4toannexb -f hevc - | "C:\hdr10plus_parser\hdr10plus_parser.exe" - -o "C:\video rip\Test.json"

ffmpeg -i "This is your video file path and name" -c:v copy -vbsf hevc_mp4toannexb -f hevc - | "this is your parser .exe location and name" - -o "This is your output file location and name"

Now next step is very simple.


I hope this helps. If you did all things correct you could see with https://mediaarea.net/en/MediaInfo something like this HDR format : SMPTE ST 2094 App 4, Version 1, HDR10+ Profile B compatible

Last edited by Mzvasturbo; 29th March 2020 at 12:31.
Mzvasturbo is offline