X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_kdm.cc;h=0f2d5b8a31ad5e6c757a27d8702a1fe0d396726e;hp=2f6916df2be684ae5569e30a73af3922eaba3c72;hb=3574212ee42b2bd924eb95d5c0f4f69ec9e0a2f0;hpb=24d54ea7fe1ba128cf8d3521d6738fc73a7c623e diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc index 2f6916df2..0f2d5b8a3 100644 --- a/src/tools/dcpomatic_kdm.cc +++ b/src/tools/dcpomatic_kdm.cc @@ -30,6 +30,7 @@ using std::stringstream; using std::cout; using std::cerr; using std::list; +using std::vector; using boost::shared_ptr; static string program_name; @@ -219,14 +220,14 @@ int main (int argc, char* argv[]) } /* XXX: allow specification of this */ - list dcps = film->dcps (); - if (dcps.empty ()) { - error ("no DCPs found in film"); - } else if (dcps.size() > 1) { - error ("more than one DCP found in film"); + vector cpls = film->cpls (); + if (cpls.empty ()) { + error ("no CPLs found in film"); + } else if (cpls.size() > 1) { + error ("more than one CPL found in film"); } - boost::filesystem::path dcp = dcps.front (); + boost::filesystem::path cpl = cpls.front().cpl_file; if (cinema_name.empty ()) { @@ -235,7 +236,7 @@ int main (int argc, char* argv[]) } shared_ptr certificate (new dcp::Certificate (boost::filesystem::path (certificate_file))); - dcp::EncryptedKDM kdm = film->make_kdm (certificate, dcp, valid_from.get(), valid_to.get()); + dcp::EncryptedKDM kdm = film->make_kdm (certificate, cpl, valid_from.get(), valid_to.get()); kdm.as_xml (output); if (verbose) { cout << "Generated KDM " << output << " for certificate.\n"; @@ -259,12 +260,13 @@ int main (int argc, char* argv[]) try { if (zip) { - write_kdm_zip_files (film, (*i)->screens(), dcp, dcp::LocalTime (valid_from.get()), dcp::LocalTime (valid_to.get()), output); + write_kdm_zip_files (film, (*i)->screens(), cpl, dcp::LocalTime (valid_from.get()), dcp::LocalTime (valid_to.get()), output); + if (verbose) { cout << "Wrote ZIP files to " << output << "\n"; } } else { - write_kdm_files (film, (*i)->screens(), dcp, dcp::LocalTime (valid_from.get()), dcp::LocalTime (valid_to.get()), output); + write_kdm_files (film, (*i)->screens(), cpl, dcp::LocalTime (valid_from.get()), dcp::LocalTime (valid_to.get()), output); if (verbose) { cout << "Wrote KDM files to " << output << "\n"; }