Accessor for ClosedCaptionsDialog.
[dcpomatic.git] / src / tools / dcpomatic_ecinema.cc
index f91dbb584271db03555155bbee03f80c5f0afa82..152194c482f415560320a4feaae9fb0816770431 100644 (file)
@@ -29,6 +29,8 @@
 #include "lib/transcode_job.h"
 #include "lib/ffmpeg_encoder.h"
 #include "lib/signal_manager.h"
+#include "lib/video_content.h"
+#include "lib/ratio.h"
 #include <dcp/key.h>
 extern "C" {
 #include <libavformat/avformat.h>
@@ -50,22 +52,27 @@ using std::ofstream;
 using boost::optional;
 using boost::shared_ptr;
 
-static void convert_dcp (boost::filesystem::path input, boost::filesystem::path output_file, boost::optional<boost::filesystem::path> kdm, int crf);
-static void convert_ffmpeg (boost::filesystem::path input, boost::filesystem::path output_file, string format, boost::optional<boost::filesystem::path> kdm);
-static void write_kdm (string id, string name, dcp::Key key, optional<boost::filesystem::path> kdm);
+static void convert_dcp (
+       boost::filesystem::path input,
+       boost::filesystem::path output_file,
+       boost::optional<boost::filesystem::path> kdm,
+       int crf
+       );
+static void convert_ffmpeg (boost::filesystem::path input, boost::filesystem::path output_file, string format);
+static void write_kdm (string id, boost::filesystem::path name, dcp::Key key);
 
 static void
 help (string n)
 {
-       cerr << "Syntax: " << n << " [OPTION] <FILE>\n"
+       cerr << "Syntax: " << n << " [OPTION] <FILE>|<DIRECTORY>\n"
             << "  -v, --version        show DCP-o-matic version\n"
             << "  -h, --help           show this help\n"
             << "  -o, --output         output directory\n"
             << "  -f, --format         output format (mov or mp4; defaults to mov)\n"
-            << "  -k, --kdm            KDM output filename (defaults to stdout)\n"
+            << "  -k, --kdm            DCP KDM filename (if required)\n"
             << "  -c, --crf            quality (CRF) when transcoding from DCP (0 is best, 51 is worst, defaults to 23)\n"
             << "\n"
-            << "<FILE> is the unencrypted .mp4 file.\n";
+            << "<FILE> is an unencrypted .mp4 file; <DIRECTORY> is a DCP directory.\n";
 }
 
 int
@@ -156,12 +163,12 @@ main (int argc, char* argv[])
                /* Assume input is a DCP */
                convert_dcp (input, output_file, kdm, crf);
        } else {
-               convert_ffmpeg (input, output_file, *format, kdm);
+               convert_ffmpeg (input, output_file, *format);
        }
 }
 
 static void
-convert_ffmpeg (boost::filesystem::path input, boost::filesystem::path output_file, string format, optional<boost::filesystem::path> kdm)
+convert_ffmpeg (boost::filesystem::path input, boost::filesystem::path output_file, string format)
 {
        AVFormatContext* input_fc = avformat_alloc_context ();
        if (avformat_open_input(&input_fc, input.string().c_str(), 0, 0) < 0) {
@@ -255,48 +262,51 @@ convert_ffmpeg (boost::filesystem::path input, boost::filesystem::path output_fi
        avformat_free_context (input_fc);
        avformat_free_context (output_fc);
 
-       write_kdm (id, output_file.filename().string(), key, kdm);
+       write_kdm (id, output_file, key);
 }
 
 static void
-write_kdm (string id, string name, dcp::Key key, optional<boost::filesystem::path> kdm)
+write_kdm (string id, boost::filesystem::path name, dcp::Key key)
 {
-       DecryptedECinemaKDM decrypted_kdm (id, name, key, optional<dcp::LocalTime>(), optional<dcp::LocalTime>());
+       DecryptedECinemaKDM decrypted_kdm (id, name.filename().string(), key, optional<dcp::LocalTime>(), optional<dcp::LocalTime>());
        EncryptedECinemaKDM encrypted_kdm = decrypted_kdm.encrypt (Config::instance()->decryption_chain()->leaf());
 
-       if (kdm) {
-               ofstream f(kdm->c_str());
-               f << encrypted_kdm.as_xml() << "\n";
-       } else {
-               cout << encrypted_kdm.as_xml() << "\n";
-       }
+       ofstream f(string(name.string() + ".xml").c_str());
+       f << encrypted_kdm.as_xml() << "\n";
 }
 
 static void
-convert_dcp (boost::filesystem::path input, boost::filesystem::path output_file, optional<boost::filesystem::path> kdm, int crf)
+convert_dcp (
+       boost::filesystem::path input, boost::filesystem::path output_file, optional<boost::filesystem::path> kdm, int crf
+       )
 {
        shared_ptr<Film> film (new Film(boost::optional<boost::filesystem::path>()));
        shared_ptr<DCPContent> dcp (new DCPContent(input));
        film->examine_and_add_content (dcp);
+       if (kdm) {
+               dcp->add_kdm (dcp::EncryptedKDM(dcp::file_to_string(*kdm)));
+       }
 
        JobManager* jm = JobManager::instance ();
        while (jm->work_to_do ()) {
                while (signal_manager->ui_idle ()) {}
-               dcpomatic_sleep (1);
+               dcpomatic_sleep_seconds (1);
        }
        DCPOMATIC_ASSERT (!jm->errors());
 
+       film->set_container (Ratio::nearest_from_ratio(dcp->video->size().ratio()));
+       
        string id = dcp::make_uuid ();
        dcp::Key key (AES_CTR_KEY_SIZE);
 
        shared_ptr<TranscodeJob> job (new TranscodeJob(film));
        job->set_encoder (
                shared_ptr<FFmpegEncoder>(
-                       new FFmpegEncoder(film, job, output_file, EXPORT_FORMAT_H264, false, false, crf, key, id)
+                       new FFmpegEncoder(film, job, output_file, EXPORT_FORMAT_H264_PCM, false, false, crf, key, id)
                        )
                );
        jm->add (job);
        show_jobs_on_console (true);
 
-       write_kdm (id, output_file.filename().string(), key, kdm);
+       write_kdm (id, output_file, key);
 }