-
Notifications
You must be signed in to change notification settings - Fork 0
/
REMUX_DOLBYVISION_macOS_MP4
48 lines (34 loc) · 1.75 KB
/
REMUX_DOLBYVISION_macOS_MP4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## demux and remux MP4 files Dolby Vision flags/features
## ALL CLI
# from dolby laboratories github repo: https://github.com/DolbyLaboratories
# FOR MP4 HDR Dolby Vision
/// DEMUXER
## https://github.com/DolbyLaboratories/dlb_mp4demux.git
/// MUXER
## https://github.com/DolbyLaboratories/dlb_mp4base.git
# HDR format : Dolby Vision
# HDR format : Dolby Vision, Version 1.0, dvhe.05.07, BL+RPU
# HDR_Format_Commercial : Dolby Vision
# HDR_Format_Version : 1.0
# HDR_Format_Profile : dvhe.05
# HDR_Format_Level : 07
# HDR_Format_Settings : BL+RPU
# Internet media type : video/H265
# Codec ID : dvhe
# Codec ID/Info : High Efficiency Video Coding with Dolby Vision
##
#----------------------------------#
##
### DEMUX ###
# navigate to lacotion of the DEMUXER executable
# Execute cli command with
# ./mp4demuxer_mac --input-file <...> --output-folder <...>
# example:
#./mp4demuxer_mac --input-file /Users/guillemramisadesoto/Documents/HDR/DOLBY_VISION_TEST_DEMUX/DOLBYVISION_3840x2160_16MBPS.mp4 --output-folder /Users/guillemramisadesoto/Documents/HDR/DOLBY_VISION_TEST_DEMUX/
### REMUX ###
# navigate to lacotion of the MUXER executable
# Execute cli command with
# cli executable / output filename / input AUDIO(from demuxer) / input video(from demuxer) / dv flags (dolby vision) --dv-profile 5 --dvh1flag 1
# ./mp4muxer_mac -o <...> -i <...audio> -i <...video> --dv-profile 5 --dvh1flag 1
# example:
#./mp4muxer_mac -o /Users/guillemramisadesoto/Documents/HDR/DOLBY_VISION_TEST_DEMUX/REMUXED_____DOLBYVISION_3840x2160_16MBPS.mp4 -i /Users/guillemramisadesoto/Documents/HDR/DOLBY_VISION_TEST_DEMUX/out_2.aac -i /Users/guillemramisadesoto/Documents/HDR/DOLBY_VISION_TEST_DEMUX/out_1.h265 --dv-profile 5 --dvh1flag 1