From: Carl Hetherington Date: Wed, 5 Mar 2014 14:09:56 +0000 (+0000) Subject: Add --still-length option to dcpomatic_create. X-Git-Tag: v2.0.48~899^2~6 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=e60d56f2e25140a6c477b9c84595e7a8bad4d1e5 Add --still-length option to dcpomatic_create. --- diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index a079a95cb..1a4ea0717 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -32,6 +32,7 @@ #include "lib/job.h" #include "lib/dcp_content_type.h" #include "lib/ratio.h" +#include "lib/image_content.h" using std::string; using std::cout; @@ -52,11 +53,21 @@ help (string n) << " -h, --help show this help\n" << " -n, --name film name\n" << " -c, --dcp-content-type FTR, SHR, TLR, TST, XSN, RTG, TSR, POL, PSA or ADV\n" - << " --container-ratio 119, 133, 137, 138, 166, 178, 185 or 239\n" - << " --content-ratio 119, 133, 137, 138, 166, 178, 185 or 239\n" + << " --container-ratio 119, 133, 137, 138, 166, 178, 185 or 239\n" + << " --content-ratio 119, 133, 137, 138, 166, 178, 185 or 239\n" + << " -s, --still-length number of seconds that still content should last\n" << " -o, --output output directory\n"; } +class SimpleUISignaller : public UISignaller +{ +public: + /* Do nothing in this method so that UI events happen in our thread + when we call UISignaller::ui_idle(). + */ + void wake_ui () {} +}; + int main (int argc, char* argv[]) { @@ -66,6 +77,7 @@ main (int argc, char* argv[]) DCPContentType const * dcp_content_type = DCPContentType::from_dci_name ("TST"); Ratio const * container_ratio = 0; Ratio const * content_ratio = 0; + int still_length = 10; boost::filesystem::path output; int option_index = 0; @@ -77,11 +89,12 @@ main (int argc, char* argv[]) { "dcp-content-type", required_argument, 0, 'c'}, { "container-ratio", required_argument, 0, 'A'}, { "content-ratio", required_argument, 0, 'B'}, + { "still-length", required_argument, 0, 's'}, { "output", required_argument, 0, 'o'}, { 0, 0, 0, 0} }; - int c = getopt_long (argc, argv, "vhn:c:A:B:o:", long_options, &option_index); + int c = getopt_long (argc, argv, "vhn:c:A:B:s:o:", long_options, &option_index); if (c == -1) { break; } @@ -120,6 +133,9 @@ main (int argc, char* argv[]) exit (EXIT_FAILURE); } break; + case 's': + still_length = atoi (optarg); + break; case 'o': output = optarg; break; @@ -141,7 +157,7 @@ main (int argc, char* argv[]) container_ratio = content_ratio; } - ui_signaller = new UISignaller (); + ui_signaller = new SimpleUISignaller (); try { shared_ptr film (new Film (output, false)); @@ -165,7 +181,15 @@ main (int argc, char* argv[]) while (jm->work_to_do ()) { ui_signaller->ui_idle (); } - + + ContentList content = film->content (); + for (ContentList::iterator i = content.begin(); i != content.end(); ++i) { + shared_ptr ic = dynamic_pointer_cast (*i); + if (ic) { + ic->set_video_length (still_length * 24); + } + } + if (jm->errors ()) { list > jobs = jm->get (); for (list >::iterator i = jobs.begin(); i != jobs.end(); ++i) {