summaryrefslogtreecommitdiff
path: root/src/lib/create_cli.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-11-28 19:36:06 +0100
committerCarl Hetherington <cth@carlh.net>2021-11-29 01:10:11 +0100
commit5f206d32ff60148ab72b35d5823f56bdbb7f50bf (patch)
treef9d6ec0d4c5995d72d19e0d5929908822e849f0c /src/lib/create_cli.cc
parent1523e5d756b2e00db6910e616514e1860c806e17 (diff)
Add --channel option to dcpomatic_create.
Diffstat (limited to 'src/lib/create_cli.cc')
-rw-r--r--src/lib/create_cli.cc36
1 files changed, 34 insertions, 2 deletions
diff --git a/src/lib/create_cli.cc b/src/lib/create_cli.cc
index 8ea4e143f..8d7c59287 100644
--- a/src/lib/create_cli.cc
+++ b/src/lib/create_cli.cc
@@ -54,7 +54,8 @@ string CreateCLI::_help =
" --threed make a 3D DCP\n"
" --j2k-bandwidth <Mbit/s> J2K bandwidth in Mbit/s\n"
" --left-eye next piece of content is for the left eye\n"
- " --right-eye next piece of content is for the right eye\n";
+ " --right-eye next piece of content is for the right eye\n"
+ " --channel <channel> next piece of content should be mapped to audio channel L, R, C, Lfe, Ls or Rs\n";
template <class T>
@@ -100,7 +101,15 @@ argument_option (
return;
}
- *out = convert(argv[++n]);
+ auto const arg = argv[++n];
+ auto const value = convert(arg);
+ if (!value) {
+ *error = String::compose("%1: %2 is not valid for %3", argv[0], arg, long_name);
+ *claimed = true;
+ return;
+ }
+
+ *out = value;
*claimed = true;
}
@@ -123,6 +132,7 @@ CreateCLI::CreateCLI (int argc, char* argv[])
string template_name_string;
int j2k_bandwidth_int = 0;
auto next_frame_type = VideoFrameType::TWO_D;
+ optional<dcp::Channel> channel;
int i = 1;
while (i < argc) {
@@ -171,6 +181,26 @@ CreateCLI::CreateCLI (int argc, char* argv[])
argument_option(i, argc, argv, "-o", "--output", &claimed, &error, &output_dir, string_to_path);
argument_option(i, argc, argv, "", "--j2k-bandwidth", &claimed, &error, &j2k_bandwidth_int);
+ std::function<optional<dcp::Channel> (string)> convert_channel = [](string channel) -> optional<dcp::Channel>{
+ if (channel == "L") {
+ return dcp::Channel::LEFT;
+ } else if (channel == "R") {
+ return dcp::Channel::RIGHT;
+ } else if (channel == "C") {
+ return dcp::Channel::CENTRE;
+ } else if (channel == "Lfe") {
+ return dcp::Channel::LFE;
+ } else if (channel == "Ls") {
+ return dcp::Channel::LS;
+ } else if (channel == "Rs") {
+ return dcp::Channel::RS;
+ } else {
+ return {};
+ }
+ };
+
+ argument_option(i, argc, argv, "", "--channel", &claimed, &error, &channel, convert_channel);
+
if (!claimed) {
if (a.length() > 2 && a.substr(0, 2) == "--") {
error = String::compose("%1: unrecognised option '%2'", argv[0], a) + String::compose(_help, argv[0]);
@@ -179,8 +209,10 @@ CreateCLI::CreateCLI (int argc, char* argv[])
Content c;
c.path = a;
c.frame_type = next_frame_type;
+ c.channel = channel;
content.push_back (c);
next_frame_type = VideoFrameType::TWO_D;
+ channel = {};
}
}