Basic CLI support for export.
authorCarl Hetherington <cth@carlh.net>
Thu, 27 Jan 2022 19:36:03 +0000 (20:36 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 9 Mar 2022 16:04:02 +0000 (17:04 +0100)
src/tools/dcpomatic_cli.cc

index 95f2f40397ecf95c0d763948b784123f68d18a9b..be4d3f51327c53e330675bc2f3d863e8ff9573e2 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2022 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
+#include "lib/audio_content.h"
+#include "lib/config.h"
+#include "lib/cross.h"
+#include "lib/dcpomatic_log.h"
+#include "lib/encode_server_finder.h"
+#include "lib/ffmpeg_encoder.h"
 #include "lib/film.h"
 #include "lib/filter.h"
-#include "lib/transcode_job.h"
 #include "lib/job_manager.h"
-#include "lib/util.h"
-#include "lib/version.h"
-#include "lib/cross.h"
-#include "lib/config.h"
-#include "lib/log.h"
-#include "lib/signal_manager.h"
-#include "lib/encode_server_finder.h"
 #include "lib/json_server.h"
+#include "lib/log.h"
 #include "lib/ratio.h"
+#include "lib/signal_manager.h"
+#include "lib/transcode_job.h"
+#include "lib/util.h"
+#include "lib/version.h"
 #include "lib/video_content.h"
-#include "lib/audio_content.h"
-#include "lib/dcpomatic_log.h"
 #include <dcp/version.h>
 #include <getopt.h>
 #include <iostream>
 #include <iomanip>
 
-using std::string;
+
 using std::cerr;
 using std::cout;
-using std::vector;
+using std::dynamic_pointer_cast;
+using std::list;
 using std::pair;
 using std::setw;
-using std::list;
 using std::shared_ptr;
+using std::string;
+using std::vector;
 using boost::optional;
-using std::dynamic_pointer_cast;
+
 
 static void
 help (string n)
 {
        cerr << "Syntax: " << n << " [OPTION] [<FILM>]\n"
-            << "  -v, --version        show DCP-o-matic version\n"
-            << "  -h, --help           show this help\n"
-            << "  -f, --flags          show flags passed to C++ compiler on build\n"
-            << "  -n, --no-progress    do not print progress to stdout\n"
-            << "  -r, --no-remote      do not use any remote servers\n"
-            << "  -t, --threads        specify number of local encoding threads (overriding configuration)\n"
-            << "  -j, --json <port>    run a JSON server on the specified port\n"
-            << "  -k, --keep-going     keep running even when the job is complete\n"
-            << "  -s, --servers <file> specify servers to use in a text file\n"
-            << "  -l, --list-servers   just display a list of encoding servers that DCP-o-matic is configured to use; don't encode\n"
-            << "  -d, --dcp-path       echo DCP's path to stdout on successful completion (implies -n)\n"
-            << "  -c, --config <dir>   directory containing config.xml and cinemas.xml\n"
-            << "      --dump           just dump a summary of the film's settings; don't encode\n"
-            << "      --no-check       don't check project's content files for changes before making the DCP\n"
+            << "  -v, --version                 show DCP-o-matic version\n"
+            << "  -h, --help                    show this help\n"
+            << "  -f, --flags                   show flags passed to C++ compiler on build\n"
+            << "  -n, --no-progress             do not print progress to stdout\n"
+            << "  -r, --no-remote               do not use any remote servers\n"
+            << "  -t, --threads                 specify number of local encoding threads (overriding configuration)\n"
+            << "  -j, --json <port>             run a JSON server on the specified port\n"
+            << "  -k, --keep-going              keep running even when the job is complete\n"
+            << "  -s, --servers <file>          specify servers to use in a text file\n"
+            << "  -l, --list-servers            just display a list of encoding servers that DCP-o-matic is configured to use; don't encode\n"
+            << "  -d, --dcp-path                echo DCP's path to stdout on successful completion (implies -n)\n"
+            << "  -c, --config <dir>            directory containing config.xml and cinemas.xml\n"
+            << "      --dump                    just dump a summary of the film's settings; don't encode\n"
+            << "      --no-check                don't check project's content files for changes before making the DCP\n"
+            << "      --export-format <format>  export project to a file, rather than making a DCP: specify mov or mp4\n"
+            << "      --export-filename         filename to export to with --export\n"
             << "\n"
             << "<FILM> is the film directory.\n";
 }
 
+
 static void
 print_dump (shared_ptr<Film> film)
 {
@@ -120,6 +127,7 @@ print_dump (shared_ptr<Film> film)
        }
 }
 
+
 static void
 list_servers ()
 {
@@ -201,6 +209,8 @@ main (int argc, char* argv[])
        bool dcp_path = false;
        optional<boost::filesystem::path> config;
        bool check = true;
+       optional<string> export_format;
+       optional<boost::filesystem::path> export_filename;
 
        int option_index = 0;
        while (true) {
@@ -220,10 +230,12 @@ main (int argc, char* argv[])
                        /* Just using A, B, C ... from here on */
                        { "dump", no_argument, 0, 'A' },
                        { "no-check", no_argument, 0, 'B' },
+                       { "export-format", required_argument, 0, 'C' },
+                       { "export-filename", required_argument, 0, 'D' },
                        { 0, 0, 0, 0 }
                };
 
-               int c = getopt_long (argc, argv, "vhfnrt:j:kAs:ldc:B", long_options, &option_index);
+               int c = getopt_long (argc, argv, "vhfnrt:j:kAs:ldc:BC:D:", long_options, &option_index);
 
                if (c == -1) {
                        break;
@@ -273,6 +285,12 @@ main (int argc, char* argv[])
                case 'B':
                        check = false;
                        break;
+               case 'C':
+                       export_format = optarg;
+                       break;
+               case 'D':
+                       export_filename = optarg;
+                       break;
                }
        }
 
@@ -307,13 +325,28 @@ main (int argc, char* argv[])
                exit (EXIT_FAILURE);
        }
 
+       if (export_format && !export_filename) {
+               cerr << "Argument --export-filename is required with --export-format\n";
+               exit (EXIT_FAILURE);
+       }
+
+       if (!export_format && export_filename) {
+               cerr << "Argument --export-format is required with --export-filename\n";
+               exit (EXIT_FAILURE);
+       }
+
+       if (export_format && *export_format != "mp4" && *export_format != "mov") {
+               cerr << "Unrecognised export format: must be mp4 or mov\n";
+               exit (EXIT_FAILURE);
+       }
+
        film_dir = argv[optind];
 
        dcpomatic_setup_path_encoding ();
        dcpomatic_setup ();
        signal_manager = new SignalManager ();
 
-       if (no_remote) {
+       if (no_remote || export_format) {
                EncodeServerFinder::instance()->stop ();
        }
 
@@ -352,10 +385,27 @@ main (int argc, char* argv[])
        }
 
        if (progress) {
-               cout << "\nMaking DCP for " << film->name() << "\n";
+               if (export_format) {
+                       cout << "\nExporting " << film->name() << "\n";
+               } else {
+                       cout << "\nMaking DCP for " << film->name() << "\n";
+               }
+       }
+
+       TranscodeJob::ChangedBehaviour behaviour = check ? TranscodeJob::ChangedBehaviour::STOP : TranscodeJob::ChangedBehaviour::IGNORE;
+
+       if (export_format) {
+               auto job = std::make_shared<TranscodeJob>(film, behaviour);
+               job->set_encoder (
+                       std::make_shared<FFmpegEncoder> (
+                               film, job, *export_filename, *export_format == "mp4" ? ExportFormat::H264_AAC : ExportFormat::PRORES, false, false, false, 23
+                               )
+                       );
+               JobManager::instance()->add (job);
+       } else {
+               film->make_dcp (behaviour);
        }
 
-       film->make_dcp (check ? TranscodeJob::ChangedBehaviour::STOP : TranscodeJob::ChangedBehaviour::IGNORE);
        bool const error = show_jobs_on_console (progress);
 
        if (keep_going) {