X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcreate_cli.cc;h=2ca17f91b002ba4b8339c5afb2945a04a48f3165;hb=f706bbb9afd10472e81a051cd5db601d6404377c;hp=26f3dbcae0b80b2ba9cc7235658590fd1eb857c8;hpb=09f8b57ac237c98eae648fc31093cf22495db740;p=dcpomatic.git diff --git a/src/lib/create_cli.cc b/src/lib/create_cli.cc index 26f3dbcae..2ca17f91b 100644 --- a/src/lib/create_cli.cc +++ b/src/lib/create_cli.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2019-2021 Carl Hetherington + Copyright (C) 2019-2022 Carl Hetherington This file is part of DCP-o-matic. @@ -47,7 +47,6 @@ string CreateCLI::_help = " -s, --still-length number of seconds that still content should last\n" " --standard SMPTE or interop (default SMPTE)\n" " --no-use-isdcf-name do not use an ISDCF name; use the specified name unmodified\n" - " --no-sign do not sign the DCP\n" " --config directory containing config.xml and cinemas.xml\n" " --twok make a 2K DCP instead of choosing a resolution based on the content\n" " --fourk make a 4K DCP instead of choosing a resolution based on the content\n" @@ -57,7 +56,8 @@ string CreateCLI::_help = " --left-eye next piece of content is for the left eye\n" " --right-eye next piece of content is for the right eye\n" " --channel next piece of content should be mapped to audio channel L, R, C, Lfe, Ls or Rs\n" - " --gain next piece of content should have the given audio gain (in dB)\n"; + " --gain next piece of content should have the given audio gain (in dB)\n" + " --kdm KDM for next piece of content\n"; template @@ -137,6 +137,7 @@ CreateCLI::CreateCLI (int argc, char* argv[]) auto next_frame_type = VideoFrameType::TWO_D; optional channel; optional gain; + optional kdm; int i = 1; while (i < argc) { @@ -208,6 +209,7 @@ CreateCLI::CreateCLI (int argc, char* argv[]) argument_option(i, argc, argv, "", "--channel", &claimed, &error, &channel, convert_channel); argument_option(i, argc, argv, "", "--gain", &claimed, &error, &gain); + argument_option(i, argc, argv, "", "--kdm", &claimed, &error, &kdm, string_to_path); if (!claimed) { if (a.length() > 2 && a.substr(0, 2) == "--") { @@ -219,6 +221,7 @@ CreateCLI::CreateCLI (int argc, char* argv[]) c.frame_type = next_frame_type; c.channel = channel; c.gain = gain; + c.kdm = kdm; content.push_back (c); next_frame_type = VideoFrameType::TWO_D; channel = {};