From f789124b96835dbe7951899b06dd62ca9eba9c73 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 10 Apr 2017 09:34:59 +0100 Subject: [PATCH] Add --dcp-frame-rate option to dcpomatic2_create. --- src/tools/dcpomatic_create.cc | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 0a7a48a73..136fbf9c0 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -57,6 +57,7 @@ syntax (string n) << " -n, --name film name\n" << " -t, --template template name\n" << " -c, --dcp-content-type FTR, SHR, TLR, TST, XSN, RTG, TSR, POL, PSA or ADV\n" + << " -f, --dcp-frame-rate set DCP video frame rate (otherwise guessed from content)\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" @@ -94,6 +95,7 @@ main (int argc, char* argv[]) string name; optional template_name; DCPContentType const * dcp_content_type = DCPContentType::from_isdcf_name ("TST"); + optional dcp_frame_rate; Ratio const * container_ratio = 0; Ratio const * content_ratio = 0; int still_length = 10; @@ -110,6 +112,7 @@ main (int argc, char* argv[]) { "name", required_argument, 0, 'n'}, { "template", required_argument, 0, 'f'}, { "dcp-content-type", required_argument, 0, 'c'}, + { "dcp-frame-rate", required_argument, 0, 'f'}, { "container-ratio", required_argument, 0, 'A'}, { "content-ratio", required_argument, 0, 'B'}, { "still-length", required_argument, 0, 's'}, @@ -120,7 +123,7 @@ main (int argc, char* argv[]) { 0, 0, 0, 0} }; - int c = getopt_long (argc, argv, "vhn:f:c:A:B:C:s:o:DE", long_options, &option_index); + int c = getopt_long (argc, argv, "vhn:f:c:f:A:B:C:s:o:DE", long_options, &option_index); if (c == -1) { break; } @@ -146,6 +149,9 @@ main (int argc, char* argv[]) exit (EXIT_FAILURE); } break; + case 'f': + dcp_frame_rate = atoi (optarg); + break; case 'A': container_ratio = Ratio::from_id (optarg); if (container_ratio == 0) { @@ -244,6 +250,10 @@ main (int argc, char* argv[]) while (signal_manager->ui_idle() > 0) {} + if (dcp_frame_rate) { + film->set_video_frame_rate (*dcp_frame_rate); + } + ContentList content = film->content (); for (ContentList::iterator i = content.begin(); i != content.end(); ++i) { shared_ptr ic = dynamic_pointer_cast (*i); -- 2.30.2