Add --channel option to dcpomatic_create.
authorCarl Hetherington <cth@carlh.net>
Sun, 28 Nov 2021 18:36:06 +0000 (19:36 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 29 Nov 2021 00:08:53 +0000 (01:08 +0100)
src/lib/create_cli.cc
src/lib/create_cli.h
src/tools/dcpomatic_create.cc
test/create_cli_test.cc

index 8ea4e143f4efd381a46d1f5089698638c0d6f0c4..8d7c5928758720e50e2ce491aa4638617e08c860 100644 (file)
@@ -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 = {};
                        }
                }
 
index 3a06c64f8e98ea39e6b16d9cbab5abc6ae248636..9cd7905368a7bdb66092af9470845a6c8372da7a 100644 (file)
@@ -38,6 +38,7 @@ public:
        struct Content {
                boost::filesystem::path path;
                VideoFrameType frame_type;
+               boost::optional<dcp::Channel> channel;
        };
 
        bool version;
index 73bcfd882c395cb28a4f8a725e1dd7fd7edce6da..1c11de3e3dfc1ff8ae1e9fc7a54576fbfc1c74b8 100644 (file)
@@ -137,6 +137,15 @@ main (int argc, char* argv[])
                                if (j->video) {
                                        j->video->set_frame_type (i.frame_type);
                                }
+                               if (j->audio && i.channel) {
+                                       for (auto stream: j->audio->streams()) {
+                                               AudioMapping mapping(stream->channels(), film->audio_channels());
+                                               for (int channel = 0; channel < stream->channels(); ++channel) {
+                                                       mapping.set(channel, *i.channel, 1.0f);
+                                               }
+                                               stream->set_mapping (mapping);
+                                       }
+                               }
                        }
                }
 
index b5663f81c252f46ac5e1739bfdf77497f592f3ba..93d33fa85974befda87eecfb27841d4960365aa5 100644 (file)
@@ -154,4 +154,19 @@ BOOST_AUTO_TEST_CASE (create_cli_test)
        BOOST_REQUIRE (cc.j2k_bandwidth);
        BOOST_CHECK_EQUAL (*cc.j2k_bandwidth, 120000000);
        BOOST_CHECK (!cc.error);
+
+       cc = run ("dcpomatic2_create --channel L fred.wav --channel R jim.wav sheila.wav");
+       BOOST_REQUIRE_EQUAL (cc.content.size(), 3U);
+       BOOST_CHECK_EQUAL (cc.content[0].path, "fred.wav");
+       BOOST_CHECK (cc.content[0].channel);
+       BOOST_CHECK (*cc.content[0].channel == dcp::Channel::LEFT);
+       BOOST_CHECK_EQUAL (cc.content[1].path, "jim.wav");
+       BOOST_CHECK (cc.content[1].channel);
+       BOOST_CHECK (*cc.content[1].channel == dcp::Channel::RIGHT);
+       BOOST_CHECK_EQUAL (cc.content[2].path, "sheila.wav");
+       BOOST_CHECK (!cc.content[2].channel);
+
+       cc = run ("dcpomatic2_create --channel foo fred.wav");
+       BOOST_REQUIRE (cc.error);
+       BOOST_CHECK (boost::algorithm::starts_with(*cc.error, "dcpomatic2_create: foo is not valid for --channel"));
 }