X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_cli.cc;h=f885412efaf9d1ae0ebd7febd5cb7db5d3175d3e;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=7dd820b9571bc9becf931b176aabcd975e75d996;hpb=d2137ac5db409e686b4d9b3fa567935a5e416d41;p=dcpomatic.git diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc index 7dd820b95..f885412ef 100644 --- a/src/tools/dcpomatic_cli.cc +++ b/src/tools/dcpomatic_cli.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,23 +17,25 @@ */ -#include -#include -#include -#include #include "lib/film.h" #include "lib/filter.h" #include "lib/transcode_job.h" #include "lib/job_manager.h" #include "lib/util.h" -#include "lib/scaler.h" #include "lib/version.h" #include "lib/cross.h" #include "lib/config.h" #include "lib/log.h" -#include "lib/ui_signaller.h" +#include "lib/signal_manager.h" #include "lib/server_finder.h" #include "lib/json_server.h" +#include "lib/ratio.h" +#include "lib/audio_content.h" +#include +#include +#include +#include +#include using std::string; using std::cerr; @@ -42,6 +44,8 @@ using std::vector; using std::pair; using std::list; using boost::shared_ptr; +using boost::optional; +using boost::dynamic_pointer_cast; static void help (string n) @@ -49,40 +53,90 @@ help (string n) cerr << "Syntax: " << n << " [OPTION] \n" << " -v, --version show DCP-o-matic version\n" << " -h, --help show this help\n" - << " -d, --deps list DCP-o-matic dependency details and quit\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" << " -j, --json run a JSON server on the specified port\n" << " -k, --keep-going keep running even when the job is complete\n" + << " --dump just dump a summary of the film's settings; don't encode\n" << "\n" << " is the film directory.\n"; } +static void +print_dump (shared_ptr film) +{ + cout << film->dcp_name (true) << "\n" + << film->container()->nickname() << " at " << ((film->resolution() == RESOLUTION_2K) ? "2K" : "4K") << "\n" + << (film->j2k_bandwidth() / 1000000) << "Mbit/s" << "\n" + << "Output " << film->video_frame_rate() << "fps " << (film->three_d() ? "3D" : "2D") << " " << (film->audio_frame_rate() / 1000) << "kHz\n" + << (film->interop() ? "Inter-Op" : "SMPTE") << " " << (film->encrypted() ? "encrypted" : "unencrypted") << "\n"; + + BOOST_FOREACH (shared_ptr c, film->content ()) { + cout << "\n" + << c->path(0) << "\n" + << "\tat " << c->position().seconds () + << " length " << c->full_length().seconds () + << " start trim " << c->trim_start().seconds () + << " end trim " << c->trim_end().seconds () << "\n"; + + shared_ptr video = dynamic_pointer_cast (c); + if (video) { + cout << "\t" << video->video_size().width << "x" << video->video_size().height << "\n" + << "\t" << video->video_frame_rate() << "fps\n" + << "\tcrop left " << video->left_crop() + << " right " << video->right_crop() + << " top " << video->top_crop() + << " bottom " << video->bottom_crop() << "\n" + << "\tscale " << video->scale().name() << "\n"; + if (video->colour_conversion()) { + if (video->colour_conversion().get().preset()) { + cout << "\tcolour conversion " + << PresetColourConversion::all()[video->colour_conversion().get().preset().get()].name + << "\n"; + } else { + cout << "\tcustom colour conversion\n"; + } + } else { + cout << "\tno colour conversion\n"; + } + + } + + shared_ptr audio = dynamic_pointer_cast (c); + if (audio) { + cout << "\t" << audio->audio_delay() << " delay\n" + << "\t" << audio->audio_gain() << " gain\n"; + } + } +} + int main (int argc, char* argv[]) { string film_dir; bool progress = true; bool no_remote = false; - int json_port = 0; + optional json_port; bool keep_going = false; + bool dump = false; int option_index = 0; while (true) { static struct option long_options[] = { { "version", no_argument, 0, 'v'}, { "help", no_argument, 0, 'h'}, - { "deps", no_argument, 0, 'd'}, { "flags", no_argument, 0, 'f'}, { "no-progress", no_argument, 0, 'n'}, { "no-remote", no_argument, 0, 'r'}, - { "json", required_argument, 0, 'j' }, + { "json", required_argument, 0, 'j'}, { "keep-going", no_argument, 0, 'k' }, + /* Just using A, B, C ... from here on */ + { "dump", no_argument, 0, 'A' }, { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhdfnrj:k", long_options, &option_index); + int c = getopt_long (argc, argv, "vhfnrj:kA", long_options, &option_index); if (c == -1) { break; @@ -95,9 +149,6 @@ main (int argc, char* argv[]) case 'h': help (argv[0]); exit (EXIT_SUCCESS); - case 'd': - cout << dependency_version_summary () << "\n"; - exit (EXIT_SUCCESS); case 'f': cout << dcpomatic_cxx_flags << "\n"; exit (EXIT_SUCCESS); @@ -113,6 +164,9 @@ main (int argc, char* argv[]) case 'k': keep_going = true; break; + case 'A': + dump = true; + break; } } @@ -122,25 +176,18 @@ main (int argc, char* argv[]) } film_dir = argv[optind]; - + dcpomatic_setup (); - ui_signaller = new UISignaller (); + signal_manager = new SignalManager (); if (no_remote) { ServerFinder::instance()->disable (); } if (json_port) { - new JSONServer (json_port); + new JSONServer (json_port.get ()); } - cout << "DCP-o-matic " << dcpomatic_version << " git " << dcpomatic_git_commit; - char buf[256]; - if (gethostname (buf, 256) == 0) { - cout << " on " << buf; - } - cout << "\n"; - shared_ptr film; try { film.reset (new Film (film_dir)); @@ -150,10 +197,25 @@ main (int argc, char* argv[]) exit (EXIT_FAILURE); } - cout << "\nMaking DCP for " << film->name() << "\n"; -// cout << "Content: " << film->content() << "\n"; -// pair const f = Filter::ffmpeg_strings (film->filters ()); -// cout << "Filters: " << f.first << " " << f.second << "\n"; + if (dump) { + print_dump (film); + exit (EXIT_SUCCESS); + } + + ContentList content = film->content (); + for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) { + vector paths = (*i)->paths (); + for (vector::const_iterator j = paths.begin(); j != paths.end(); ++j) { + if (!boost::filesystem::exists (*j)) { + cerr << argv[0] << ": content file " << *j << " not found.\n"; + exit (EXIT_FAILURE); + } + } + } + + if (progress) { + cout << "\nMaking DCP for " << film->name() << "\n"; + } film->make_dcp (); @@ -179,10 +241,8 @@ main (int argc, char* argv[]) for (list >::iterator i = jobs.begin(); i != jobs.end(); ++i) { if (progress) { cout << (*i)->name() << ": "; - - float const p = (*i)->progress (); - - if (p >= 0) { + + if ((*i)->progress ()) { cout << (*i)->status() << " \n"; } else { cout << ": Running \n"; @@ -221,8 +281,10 @@ main (int argc, char* argv[]) indirectly holding onto codecs. */ JobManager::drop (); - + + ServerFinder::drop (); + return error ? EXIT_FAILURE : EXIT_SUCCESS; } - +