Change video content scaling so that it either:
[dcpomatic.git] / src / lib / create_cli.cc
1 /*
2     Copyright (C) 2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "create_cli.h"
22 #include "dcp_content_type.h"
23 #include "ratio.h"
24 #include "config.h"
25 #include "compose.hpp"
26 #include <dcp/raw_convert.h>
27 #include <string>
28
29 #include <iostream>
30
31 using std::string;
32 using std::cout;
33 using boost::optional;
34
35 string CreateCLI::_help =
36         "\nSyntax: %1 [OPTION] <CONTENT> [OPTION] [<CONTENT> ...]\n"
37         "  -v, --version                 show DCP-o-matic version\n"
38         "  -h, --help                    show this help\n"
39         "  -n, --name <name>             film name\n"
40         "  -t, --template <name>         template name\n"
41         "  -e, --encrypt                 make an encrypted DCP\n"
42         "  -c, --dcp-content-type <type> FTR, SHR, TLR, TST, XSN, RTG, TSR, POL, PSA or ADV\n"
43         "  -f, --dcp-frame-rate <rate>   set DCP video frame rate (otherwise guessed from content)\n"
44         "      --container-ratio <ratio> 119, 133, 137, 138, 166, 178, 185 or 239\n"
45         "  -s, --still-length <n>        number of seconds that still content should last\n"
46         "      --standard <standard>     SMPTE or interop (default SMPTE)\n"
47         "      --no-use-isdcf-name       do not use an ISDCF name; use the specified name unmodified\n"
48         "      --no-sign                 do not sign the DCP\n"
49         "      --config <dir>            directory containing config.xml and cinemas.xml\n"
50         "      --fourk                   make a 4K DCP rather than a 2K one\n"
51         "  -o, --output <dir>            output directory\n"
52         "      --threed                  make a 3D DCP\n"
53         "      --j2k-bandwidth <Mbit/s>  J2K bandwidth in Mbit/s\n"
54         "      --left-eye                next piece of content is for the left eye\n"
55         "      --right-eye               next piece of content is for the right eye\n";
56
57 template <class T>
58 void
59 argument_option (int& n, int argc, char* argv[], string short_name, string long_name, bool* claimed, optional<string>* error, T* out)
60 {
61         string const a = argv[n];
62         if (a != short_name && a != long_name) {
63                 return;
64         }
65
66         if ((n + 1) >= argc) {
67                 **error = String::compose("%1: option %2 requires an argument", argv[0], long_name);
68                 return;
69         }
70
71         *out = dcp::raw_convert<T>(string(argv[++n]));
72         *claimed = true;
73 }
74
75 CreateCLI::CreateCLI (int argc, char* argv[])
76         : version (false)
77         , encrypt (false)
78         , threed (false)
79         , dcp_content_type (0)
80         , container_ratio (0)
81         , still_length (10)
82         , standard (dcp::SMPTE)
83         , no_use_isdcf_name (false)
84         , no_sign (false)
85         , fourk (false)
86 {
87         string dcp_content_type_string = "TST";
88         string container_ratio_string;
89         string standard_string = "SMPTE";
90         int dcp_frame_rate_int = 0;
91         string template_name_string;
92         string config_dir_string;
93         string output_dir_string;
94         int j2k_bandwidth_int = 0;
95         VideoFrameType next_frame_type = VIDEO_FRAME_TYPE_2D;
96
97         int i = 1;
98         while (i < argc) {
99                 string const a = argv[i];
100                 bool claimed = false;
101
102                 if (a == "-v" || a == "--version") {
103                         version = true;
104                         return;
105                 } else if (a == "-h" || a == "--help") {
106                         error = "Create a film directory (ready for making a DCP) or metadata file from some content files.\n"
107                                 "A film directory will be created if -o or --output is specified, otherwise a metadata file\n"
108                                 "will be written to stdout.\n" + String::compose(_help, argv[0]);
109                         return;
110                 }
111
112                 if (a == "-e" || a == "--encrypt") {
113                         encrypt = claimed = true;
114                 } else if (a == "--no-use-isdcf-name") {
115                         no_use_isdcf_name = claimed = true;
116                 } else if (a == "--no-sign") {
117                         no_sign = claimed = true;
118                 } else if (a == "--threed") {
119                         threed = claimed = true;
120                 } else if (a == "--left-eye") {
121                         next_frame_type = VIDEO_FRAME_TYPE_3D_LEFT;
122                         claimed = true;
123                 } else if (a == "--right-eye") {
124                         next_frame_type = VIDEO_FRAME_TYPE_3D_RIGHT;
125                         claimed = true;
126                 } else if (a == "--fourk") {
127                         fourk = true;
128                         claimed = true;
129                 }
130
131                 argument_option(i, argc, argv, "-n", "--name",             &claimed, &error, &name);
132                 argument_option(i, argc, argv, "-t", "--template",         &claimed, &error, &template_name_string);
133                 argument_option(i, argc, argv, "-c", "--dcp-content-type", &claimed, &error, &dcp_content_type_string);
134                 argument_option(i, argc, argv, "-f", "--dcp-frame-rate",   &claimed, &error, &dcp_frame_rate_int);
135                 argument_option(i, argc, argv, "",   "--container-ratio",  &claimed, &error, &container_ratio_string);
136                 argument_option(i, argc, argv, "-s", "--still-length",     &claimed, &error, &still_length);
137                 argument_option(i, argc, argv, "",   "--standard",         &claimed, &error, &standard_string);
138                 argument_option(i, argc, argv, "",   "--config",           &claimed, &error, &config_dir_string);
139                 argument_option(i, argc, argv, "-o", "--output",           &claimed, &error, &output_dir_string);
140                 argument_option(i, argc, argv, "",   "--j2k-bandwidth",    &claimed, &error, &j2k_bandwidth_int);
141
142                 if (!claimed) {
143                         if (a.length() > 2 && a.substr(0, 2) == "--") {
144                                 error = String::compose("%1: unrecognised option '%2'", argv[0], a) + String::compose(_help, argv[0]);
145                                 return;
146                         } else {
147                                 Content c;
148                                 c.path = a;
149                                 c.frame_type = next_frame_type;
150                                 content.push_back (c);
151                                 next_frame_type = VIDEO_FRAME_TYPE_2D;
152                         }
153                 }
154
155                 ++i;
156         }
157
158         if (!config_dir_string.empty()) {
159                 config_dir = config_dir_string;
160         }
161
162         if (!output_dir_string.empty()) {
163                 output_dir = output_dir_string;
164         }
165
166         if (!template_name_string.empty()) {
167                 template_name = template_name_string;
168         }
169
170         if (dcp_frame_rate_int) {
171                 dcp_frame_rate = dcp_frame_rate_int;
172         }
173
174         if (j2k_bandwidth_int) {
175                 j2k_bandwidth = j2k_bandwidth_int * 1000000;
176         }
177
178         dcp_content_type = DCPContentType::from_isdcf_name(dcp_content_type_string);
179         if (!dcp_content_type) {
180                 error = String::compose("%1: unrecognised DCP content type '%2'", argv[0], dcp_content_type_string);
181                 return;
182         }
183
184         if (!container_ratio_string.empty()) {
185                 container_ratio = Ratio::from_id (container_ratio_string);
186                 if (!container_ratio) {
187                         error = String::compose("%1: unrecognised container ratio %2", argv[0], container_ratio_string);
188                         return;
189                 }
190         }
191
192         if (standard_string != "SMPTE" && standard_string != "interop") {
193                 error = String::compose("%1: standard must be SMPTE or interop", argv[0]);
194                 return;
195         }
196
197         if (content.empty()) {
198                 error = String::compose("%1: no content specified", argv[0]);
199                 return;
200         }
201
202         if (name.empty()) {
203                 name = content[0].path.leaf().string();
204         }
205
206         if (j2k_bandwidth && (*j2k_bandwidth < 10000000 || *j2k_bandwidth > Config::instance()->maximum_j2k_bandwidth())) {
207                 error = String::compose("%1: j2k-bandwidth must be between 10 and %2 Mbit/s", argv[0], (Config::instance()->maximum_j2k_bandwidth() / 1000000));
208                 return;
209         }
210 }