Replies: 2 comments 3 replies
-
You didn't add |
Beta Was this translation helpful? Give feedback.
1 reply
-
I have another question, please. Is it possible that I am missing something along the way? Thanks! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have an MKV file with HDR and DV.
This is the DV info:
DOVI configuration record: version: 1.0, profile: 7, level: 6, rpu flag: 1, el flag: 1, bl flag: 1, compatibility id: 6
I am running the following comand to extract the audio and video:
ffmpeg -i input.mkv -map 0:v:0 -c copy video.hevc -map 0:a:0 -c copy audio.eac3
Then I am running the following command to convert the hevc file to profile 8:
dovi_tool -m 2 convert video.hevc --output video_profile8.hevc
Then adding all file to mp4 file:
MP4Box -add video_profile8.hevc -add audio.eac3 output_profile8.mp4
When checking the output file DV configuration it stays the same:
DOVI configuration record: version: 1.0, profile: 7, level: 6, rpu flag: 1, el flag: 1, bl flag: 1, compatibility id: 6
What am I missing here?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions