More string -> boost::filesystem::path.
[dcpomatic.git] / src / lib / film.cc
1 /*
2     Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <stdexcept>
21 #include <iostream>
22 #include <algorithm>
23 #include <fstream>
24 #include <cstdlib>
25 #include <sstream>
26 #include <iomanip>
27 #include <unistd.h>
28 #include <boost/filesystem.hpp>
29 #include <boost/algorithm/string.hpp>
30 #include <boost/lexical_cast.hpp>
31 #include <boost/date_time.hpp>
32 #include <libxml++/libxml++.h>
33 #include <libcxml/cxml.h>
34 #include <libdcp/signer_chain.h>
35 #include <libdcp/cpl.h>
36 #include <libdcp/signer.h>
37 #include <libdcp/util.h>
38 #include <libdcp/kdm.h>
39 #include "film.h"
40 #include "job.h"
41 #include "util.h"
42 #include "job_manager.h"
43 #include "transcode_job.h"
44 #include "scp_dcp_job.h"
45 #include "log.h"
46 #include "exceptions.h"
47 #include "examine_content_job.h"
48 #include "scaler.h"
49 #include "config.h"
50 #include "version.h"
51 #include "ui_signaller.h"
52 #include "playlist.h"
53 #include "player.h"
54 #include "dcp_content_type.h"
55 #include "ratio.h"
56 #include "cross.h"
57 #include "cinema.h"
58
59 #include "i18n.h"
60
61 using std::string;
62 using std::stringstream;
63 using std::multimap;
64 using std::pair;
65 using std::map;
66 using std::vector;
67 using std::ifstream;
68 using std::ofstream;
69 using std::setfill;
70 using std::min;
71 using std::make_pair;
72 using std::endl;
73 using std::cout;
74 using std::list;
75 using boost::shared_ptr;
76 using boost::weak_ptr;
77 using boost::lexical_cast;
78 using boost::dynamic_pointer_cast;
79 using boost::to_upper_copy;
80 using boost::ends_with;
81 using boost::starts_with;
82 using boost::optional;
83 using libdcp::Size;
84 using libdcp::Signer;
85
86 int const Film::state_version = 4;
87
88 /** Construct a Film object in a given directory.
89  *
90  *  @param dir Film directory.
91  */
92
93 Film::Film (boost::filesystem::path dir)
94         : _playlist (new Playlist)
95         , _use_dci_name (true)
96         , _dcp_content_type (Config::instance()->default_dcp_content_type ())
97         , _container (Config::instance()->default_container ())
98         , _resolution (RESOLUTION_2K)
99         , _scaler (Scaler::from_id ("bicubic"))
100         , _with_subtitles (false)
101         , _encrypted (false)
102         , _j2k_bandwidth (Config::instance()->default_j2k_bandwidth ())
103         , _dci_metadata (Config::instance()->default_dci_metadata ())
104         , _video_frame_rate (24)
105         , _audio_channels (MAX_AUDIO_CHANNELS)
106         , _three_d (false)
107         , _sequence_video (true)
108         , _interop (false)
109         , _dirty (false)
110 {
111         set_dci_date_today ();
112
113         _playlist->Changed.connect (bind (&Film::playlist_changed, this));
114         _playlist->ContentChanged.connect (bind (&Film::playlist_content_changed, this, _1, _2));
115         
116         /* Make state.directory a complete path without ..s (where possible)
117            (Code swiped from Adam Bowen on stackoverflow)
118         */
119         
120         boost::filesystem::path p (boost::filesystem::system_complete (dir));
121         boost::filesystem::path result;
122         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
123                 if (*i == "..") {
124                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
125                                 result /= *i;
126                         } else {
127                                 result = result.parent_path ();
128                         }
129                 } else if (*i != ".") {
130                         result /= *i;
131                 }
132         }
133
134         set_directory (result);
135         _log.reset (new FileLog (file ("log")));
136
137         _playlist->set_sequence_video (_sequence_video);
138 }
139
140 string
141 Film::video_identifier () const
142 {
143         assert (container ());
144         LocaleGuard lg;
145
146         stringstream s;
147         s << container()->id()
148           << "_" << resolution_to_string (_resolution)
149           << "_" << _playlist->video_identifier()
150           << "_" << _video_frame_rate
151           << "_" << scaler()->id()
152           << "_" << j2k_bandwidth();
153
154         if (_interop) {
155                 s << "_I";
156         } else {
157                 s << "_S";
158         }
159
160         if (_three_d) {
161                 s << "_3D";
162         }
163
164         return s.str ();
165 }
166           
167 /** @return The path to the directory to write video frame info files to */
168 boost::filesystem::path
169 Film::info_dir () const
170 {
171         boost::filesystem::path p;
172         p /= "info";
173         p /= video_identifier ();
174         return dir (p);
175 }
176
177 boost::filesystem::path
178 Film::internal_video_mxf_dir () const
179 {
180         return dir ("video");
181 }
182
183 boost::filesystem::path
184 Film::internal_video_mxf_filename () const
185 {
186         return video_identifier() + ".mxf";
187 }
188
189 boost::filesystem::path
190 Film::video_mxf_filename () const
191 {
192         return filename_safe_name() + "_video.mxf";
193 }
194
195 boost::filesystem::path
196 Film::audio_mxf_filename () const
197 {
198         return filename_safe_name() + "_audio.mxf";
199 }
200
201 string
202 Film::filename_safe_name () const
203 {
204         string const n = name ();
205         string o;
206         for (size_t i = 0; i < n.length(); ++i) {
207                 if (isalnum (n[i])) {
208                         o += n[i];
209                 } else {
210                         o += "_";
211                 }
212         }
213
214         return o;
215 }
216
217 boost::filesystem::path
218 Film::audio_analysis_path (shared_ptr<const AudioContent> c) const
219 {
220         boost::filesystem::path p = dir ("analysis");
221         p /= c->digest();
222         return p;
223 }
224
225 /** Add suitable Jobs to the JobManager to create a DCP for this Film */
226 void
227 Film::make_dcp ()
228 {
229         set_dci_date_today ();
230         
231         if (dcp_name().find ("/") != string::npos) {
232                 throw BadSettingError (_("name"), _("cannot contain slashes"));
233         }
234         
235         log()->log (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
236
237         {
238                 char buffer[128];
239                 gethostname (buffer, sizeof (buffer));
240                 log()->log (String::compose ("Starting to make DCP on %1", buffer));
241         }
242
243         ContentList cl = content ();
244         for (ContentList::const_iterator i = cl.begin(); i != cl.end(); ++i) {
245                 log()->log (String::compose ("Content: %1", (*i)->technical_summary()));
246         }
247         log()->log (String::compose ("DCP video rate %1 fps", video_frame_rate()));
248         log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads()));
249         log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth()));
250 #ifdef DCPOMATIC_DEBUG
251         log()->log ("DCP-o-matic built in debug mode.");
252 #else
253         log()->log ("DCP-o-matic built in optimised mode.");
254 #endif
255 #ifdef LIBDCP_DEBUG
256         log()->log ("libdcp built in debug mode.");
257 #else
258         log()->log ("libdcp built in optimised mode.");
259 #endif
260         log()->log (String::compose ("CPU: %1, %2 processors", cpu_info(), boost::thread::hardware_concurrency ()));
261         list<pair<string, string> > const m = mount_info ();
262         for (list<pair<string, string> >::const_iterator i = m.begin(); i != m.end(); ++i) {
263                 log()->log (String::compose ("Mount: %1 %2", i->first, i->second));
264         }
265         
266         if (container() == 0) {
267                 throw MissingSettingError (_("container"));
268         }
269
270         if (content().empty()) {
271                 throw StringError (_("You must add some content to the DCP before creating it"));
272         }
273
274         if (dcp_content_type() == 0) {
275                 throw MissingSettingError (_("content type"));
276         }
277
278         if (name().empty()) {
279                 throw MissingSettingError (_("name"));
280         }
281
282         JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this())));
283 }
284
285 /** Start a job to send our DCP to the configured TMS */
286 void
287 Film::send_dcp_to_tms ()
288 {
289         shared_ptr<Job> j (new SCPDCPJob (shared_from_this()));
290         JobManager::instance()->add (j);
291 }
292
293 /** Count the number of frames that have been encoded for this film.
294  *  @return frame count.
295  */
296 int
297 Film::encoded_frames () const
298 {
299         if (container() == 0) {
300                 return 0;
301         }
302
303         int N = 0;
304         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (info_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
305                 ++N;
306                 boost::this_thread::interruption_point ();
307         }
308
309         return N;
310 }
311
312 /** Write state to our `metadata' file */
313 void
314 Film::write_metadata () const
315 {
316         if (!boost::filesystem::exists (directory ())) {
317                 boost::filesystem::create_directory (directory ());
318         }
319         
320         LocaleGuard lg;
321
322         boost::filesystem::create_directories (directory ());
323
324         xmlpp::Document doc;
325         xmlpp::Element* root = doc.create_root_node ("Metadata");
326
327         root->add_child("Version")->add_child_text (lexical_cast<string> (state_version));
328         root->add_child("Name")->add_child_text (_name);
329         root->add_child("UseDCIName")->add_child_text (_use_dci_name ? "1" : "0");
330
331         if (_dcp_content_type) {
332                 root->add_child("DCPContentType")->add_child_text (_dcp_content_type->dci_name ());
333         }
334
335         if (_container) {
336                 root->add_child("Container")->add_child_text (_container->id ());
337         }
338
339         root->add_child("Resolution")->add_child_text (resolution_to_string (_resolution));
340         root->add_child("Scaler")->add_child_text (_scaler->id ());
341         root->add_child("WithSubtitles")->add_child_text (_with_subtitles ? "1" : "0");
342         root->add_child("J2KBandwidth")->add_child_text (lexical_cast<string> (_j2k_bandwidth));
343         _dci_metadata.as_xml (root->add_child ("DCIMetadata"));
344         root->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate));
345         root->add_child("DCIDate")->add_child_text (boost::gregorian::to_iso_string (_dci_date));
346         root->add_child("AudioChannels")->add_child_text (lexical_cast<string> (_audio_channels));
347         root->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
348         root->add_child("SequenceVideo")->add_child_text (_sequence_video ? "1" : "0");
349         root->add_child("Interop")->add_child_text (_interop ? "1" : "0");
350         root->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0");
351         root->add_child("Key")->add_child_text (_key.hex ());
352         _playlist->as_xml (root->add_child ("Playlist"));
353
354         doc.write_to_file_formatted (file("metadata.xml").string ());
355         
356         _dirty = false;
357 }
358
359 /** Read state from our metadata file */
360 void
361 Film::read_metadata ()
362 {
363         LocaleGuard lg;
364
365         if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
366                 throw StringError (_("This film was created with an older version of DCP-o-matic, and unfortunately it cannot be loaded into this version.  You will need to create a new Film, re-add your content and set it up again.  Sorry!"));
367         }
368
369         cxml::Document f ("Metadata");
370         f.read_file (file ("metadata.xml"));
371         
372         _name = f.string_child ("Name");
373         _use_dci_name = f.bool_child ("UseDCIName");
374
375         {
376                 optional<string> c = f.optional_string_child ("DCPContentType");
377                 if (c) {
378                         _dcp_content_type = DCPContentType::from_dci_name (c.get ());
379                 }
380         }
381
382         {
383                 optional<string> c = f.optional_string_child ("Container");
384                 if (c) {
385                         _container = Ratio::from_id (c.get ());
386                 }
387         }
388
389         _resolution = string_to_resolution (f.string_child ("Resolution"));
390         _scaler = Scaler::from_id (f.string_child ("Scaler"));
391         _with_subtitles = f.bool_child ("WithSubtitles");
392         _j2k_bandwidth = f.number_child<int> ("J2KBandwidth");
393         _dci_metadata = DCIMetadata (f.node_child ("DCIMetadata"));
394         _video_frame_rate = f.number_child<int> ("VideoFrameRate");
395         _dci_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
396         _encrypted = f.bool_child ("Encrypted");
397         _audio_channels = f.number_child<int> ("AudioChannels");
398         _sequence_video = f.bool_child ("SequenceVideo");
399         _three_d = f.bool_child ("ThreeD");
400         _interop = f.bool_child ("Interop");
401         _key = libdcp::Key (f.string_child ("Key"));
402         _playlist->set_from_xml (shared_from_this(), f.node_child ("Playlist"));
403
404         _dirty = false;
405 }
406
407 /** Given a directory name, return its full path within the Film's directory.
408  *  The directory (and its parents) will be created if they do not exist.
409  */
410 boost::filesystem::path
411 Film::dir (boost::filesystem::path d) const
412 {
413         boost::filesystem::path p;
414         p /= _directory;
415         p /= d;
416         
417         boost::filesystem::create_directories (p);
418         
419         return p;
420 }
421
422 /** Given a file or directory name, return its full path within the Film's directory.
423  *  Any required parent directories will be created.
424  */
425 boost::filesystem::path
426 Film::file (boost::filesystem::path f) const
427 {
428         boost::filesystem::path p;
429         p /= _directory;
430         p /= f;
431
432         boost::filesystem::create_directories (p.parent_path ());
433         
434         return p;
435 }
436
437 /** @return a DCI-compliant name for a DCP of this film */
438 string
439 Film::dci_name (bool if_created_now) const
440 {
441         stringstream d;
442
443         string fixed_name = to_upper_copy (name());
444         for (size_t i = 0; i < fixed_name.length(); ++i) {
445                 if (fixed_name[i] == ' ') {
446                         fixed_name[i] = '-';
447                 }
448         }
449
450         /* Spec is that the name part should be maximum 14 characters, as I understand it */
451         if (fixed_name.length() > 14) {
452                 fixed_name = fixed_name.substr (0, 14);
453         }
454
455         d << fixed_name;
456
457         if (dcp_content_type()) {
458                 d << "_" << dcp_content_type()->dci_name();
459                 d << "-" << dci_metadata().content_version;
460         }
461
462         if (three_d ()) {
463                 d << "-3D";
464         }
465
466         if (video_frame_rate() != 24) {
467                 d << "-" << video_frame_rate();
468         }
469
470         if (container()) {
471                 d << "_" << container()->dci_name();
472         }
473
474         DCIMetadata const dm = dci_metadata ();
475
476         if (!dm.audio_language.empty ()) {
477                 d << "_" << dm.audio_language;
478                 if (!dm.subtitle_language.empty() && with_subtitles()) {
479                         d << "-" << dm.subtitle_language;
480                 } else {
481                         d << "-XX";
482                 }
483         }
484
485         if (!dm.territory.empty ()) {
486                 d << "_" << dm.territory;
487                 if (!dm.rating.empty ()) {
488                         d << "-" << dm.rating;
489                 }
490         }
491
492         switch (audio_channels ()) {
493         case 1:
494                 d << "_10";
495                 break;
496         case 2:
497                 d << "_20";
498                 break;
499         case 3:
500                 d << "_30";
501                 break;
502         case 4:
503                 d << "_40";
504                 break;
505         case 5:
506                 d << "_50";
507                 break;
508         case 6:
509                 d << "_51";
510                 break;
511         }
512
513         d << "_" << resolution_to_string (_resolution);
514
515         if (!dm.studio.empty ()) {
516                 d << "_" << dm.studio;
517         }
518
519         if (if_created_now) {
520                 d << "_" << boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
521         } else {
522                 d << "_" << boost::gregorian::to_iso_string (_dci_date);
523         }
524
525         if (!dm.facility.empty ()) {
526                 d << "_" << dm.facility;
527         }
528
529         if (!dm.package_type.empty ()) {
530                 d << "_" << dm.package_type;
531         }
532
533         return d.str ();
534 }
535
536 /** @return name to give the DCP */
537 string
538 Film::dcp_name (bool if_created_now) const
539 {
540         if (use_dci_name()) {
541                 return dci_name (if_created_now);
542         }
543
544         return name();
545 }
546
547
548 void
549 Film::set_directory (boost::filesystem::path d)
550 {
551         _directory = d;
552         _dirty = true;
553 }
554
555 void
556 Film::set_name (string n)
557 {
558         _name = n;
559         signal_changed (NAME);
560 }
561
562 void
563 Film::set_use_dci_name (bool u)
564 {
565         _use_dci_name = u;
566         signal_changed (USE_DCI_NAME);
567 }
568
569 void
570 Film::set_dcp_content_type (DCPContentType const * t)
571 {
572         _dcp_content_type = t;
573         signal_changed (DCP_CONTENT_TYPE);
574 }
575
576 void
577 Film::set_container (Ratio const * c)
578 {
579         _container = c;
580         signal_changed (CONTAINER);
581 }
582
583 void
584 Film::set_resolution (Resolution r)
585 {
586         _resolution = r;
587         signal_changed (RESOLUTION);
588 }
589
590 void
591 Film::set_scaler (Scaler const * s)
592 {
593         _scaler = s;
594         signal_changed (SCALER);
595 }
596
597 void
598 Film::set_with_subtitles (bool w)
599 {
600         _with_subtitles = w;
601         signal_changed (WITH_SUBTITLES);
602 }
603
604 void
605 Film::set_j2k_bandwidth (int b)
606 {
607         _j2k_bandwidth = b;
608         signal_changed (J2K_BANDWIDTH);
609 }
610
611 void
612 Film::set_dci_metadata (DCIMetadata m)
613 {
614         _dci_metadata = m;
615         signal_changed (DCI_METADATA);
616 }
617
618 void
619 Film::set_video_frame_rate (int f)
620 {
621         _video_frame_rate = f;
622         signal_changed (VIDEO_FRAME_RATE);
623 }
624
625 void
626 Film::set_audio_channels (int c)
627 {
628         _audio_channels = c;
629         signal_changed (AUDIO_CHANNELS);
630 }
631
632 void
633 Film::set_three_d (bool t)
634 {
635         _three_d = t;
636         signal_changed (THREE_D);
637 }
638
639 void
640 Film::set_interop (bool i)
641 {
642         _interop = i;
643         signal_changed (INTEROP);
644 }
645
646 void
647 Film::signal_changed (Property p)
648 {
649         _dirty = true;
650
651         switch (p) {
652         case Film::CONTENT:
653                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
654                 break;
655         case Film::VIDEO_FRAME_RATE:
656         case Film::SEQUENCE_VIDEO:
657                 _playlist->maybe_sequence_video ();
658                 break;
659         default:
660                 break;
661         }
662
663         if (ui_signaller) {
664                 ui_signaller->emit (boost::bind (boost::ref (Changed), p));
665         }
666 }
667
668 void
669 Film::set_dci_date_today ()
670 {
671         _dci_date = boost::gregorian::day_clock::local_day ();
672 }
673
674 boost::filesystem::path
675 Film::info_path (int f, Eyes e) const
676 {
677         boost::filesystem::path p;
678         p /= info_dir ();
679
680         stringstream s;
681         s.width (8);
682         s << setfill('0') << f;
683
684         if (e == EYES_LEFT) {
685                 s << ".L";
686         } else if (e == EYES_RIGHT) {
687                 s << ".R";
688         }
689
690         s << ".md5";
691         
692         p /= s.str();
693
694         /* info_dir() will already have added any initial bit of the path,
695            so don't call file() on this.
696         */
697         return p;
698 }
699
700 boost::filesystem::path
701 Film::j2c_path (int f, Eyes e, bool t) const
702 {
703         boost::filesystem::path p;
704         p /= "j2c";
705         p /= video_identifier ();
706
707         stringstream s;
708         s.width (8);
709         s << setfill('0') << f;
710
711         if (e == EYES_LEFT) {
712                 s << ".L";
713         } else if (e == EYES_RIGHT) {
714                 s << ".R";
715         }
716         
717         s << ".j2c";
718
719         if (t) {
720                 s << ".tmp";
721         }
722
723         p /= s.str();
724         return file (p);
725 }
726
727 /** @return List of subdirectories (not full paths) containing DCPs that can be successfully libdcp::DCP::read() */
728 list<boost::filesystem::path>
729 Film::dcps () const
730 {
731         list<boost::filesystem::path> out;
732         
733         boost::filesystem::path const dir = directory ();
734         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator(dir); i != boost::filesystem::directory_iterator(); ++i) {
735                 if (
736                         boost::filesystem::is_directory (*i) &&
737                         i->path().leaf() != "j2c" && i->path().leaf() != "video" && i->path().leaf() != "info" && i->path().leaf() != "analysis"
738                         ) {
739
740                         try {
741                                 libdcp::DCP dcp (*i);
742                                 dcp.read ();
743                                 out.push_back (i->path().leaf ());
744                         } catch (...) {
745
746                         }
747                 }
748         }
749         
750         return out;
751 }
752
753 shared_ptr<Player>
754 Film::make_player () const
755 {
756         return shared_ptr<Player> (new Player (shared_from_this (), _playlist));
757 }
758
759 void
760 Film::set_encrypted (bool e)
761 {
762         _encrypted = e;
763         signal_changed (ENCRYPTED);
764 }
765
766 shared_ptr<Playlist>
767 Film::playlist () const
768 {
769         return _playlist;
770 }
771
772 ContentList
773 Film::content () const
774 {
775         return _playlist->content ();
776 }
777
778 void
779 Film::examine_and_add_content (shared_ptr<Content> c)
780 {
781         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
782         j->Finished.connect (bind (&Film::maybe_add_content, this, boost::weak_ptr<Job> (j), boost::weak_ptr<Content> (c)));
783         JobManager::instance()->add (j);
784 }
785
786 void
787 Film::maybe_add_content (weak_ptr<Job> j, weak_ptr<Content> c)
788 {
789         shared_ptr<Job> job = j.lock ();
790         if (!job || !job->finished_ok ()) {
791                 return;
792         }
793         
794         shared_ptr<Content> content = c.lock ();
795         if (content) {
796                 add_content (content);
797         }
798 }
799
800 void
801 Film::add_content (shared_ptr<Content> c)
802 {
803         /* Add video content after any existing content */
804         if (dynamic_pointer_cast<VideoContent> (c)) {
805                 c->set_position (_playlist->video_end ());
806         }
807
808         _playlist->add (c);
809 }
810
811 void
812 Film::remove_content (shared_ptr<Content> c)
813 {
814         _playlist->remove (c);
815 }
816
817 void
818 Film::move_content_earlier (shared_ptr<Content> c)
819 {
820         _playlist->move_earlier (c);
821 }
822
823 void
824 Film::move_content_later (shared_ptr<Content> c)
825 {
826         _playlist->move_later (c);
827 }
828
829 Time
830 Film::length () const
831 {
832         return _playlist->length ();
833 }
834
835 bool
836 Film::has_subtitles () const
837 {
838         return _playlist->has_subtitles ();
839 }
840
841 OutputVideoFrame
842 Film::best_video_frame_rate () const
843 {
844         return _playlist->best_dcp_frame_rate ();
845 }
846
847 void
848 Film::playlist_content_changed (boost::weak_ptr<Content> c, int p)
849 {
850         if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
851                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
852         } 
853
854         if (ui_signaller) {
855                 ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
856         }
857 }
858
859 void
860 Film::playlist_changed ()
861 {
862         signal_changed (CONTENT);
863 }       
864
865 OutputAudioFrame
866 Film::time_to_audio_frames (Time t) const
867 {
868         return t * audio_frame_rate () / TIME_HZ;
869 }
870
871 OutputVideoFrame
872 Film::time_to_video_frames (Time t) const
873 {
874         return t * video_frame_rate () / TIME_HZ;
875 }
876
877 Time
878 Film::audio_frames_to_time (OutputAudioFrame f) const
879 {
880         return f * TIME_HZ / audio_frame_rate ();
881 }
882
883 Time
884 Film::video_frames_to_time (OutputVideoFrame f) const
885 {
886         return f * TIME_HZ / video_frame_rate ();
887 }
888
889 OutputAudioFrame
890 Film::audio_frame_rate () const
891 {
892         /* XXX */
893         return 48000;
894 }
895
896 void
897 Film::set_sequence_video (bool s)
898 {
899         _sequence_video = s;
900         _playlist->set_sequence_video (s);
901         signal_changed (SEQUENCE_VIDEO);
902 }
903
904 libdcp::Size
905 Film::full_frame () const
906 {
907         switch (_resolution) {
908         case RESOLUTION_2K:
909                 return libdcp::Size (2048, 1080);
910         case RESOLUTION_4K:
911                 return libdcp::Size (4096, 2160);
912         }
913
914         assert (false);
915         return libdcp::Size ();
916 }
917
918 libdcp::KDM
919 Film::make_kdm (
920         shared_ptr<libdcp::Certificate> target,
921         boost::filesystem::path dcp_dir,
922         boost::posix_time::ptime from,
923         boost::posix_time::ptime until
924         ) const
925 {
926         shared_ptr<const Signer> signer = make_signer ();
927
928         libdcp::DCP dcp (dir (dcp_dir.string ()));
929         
930         try {
931                 dcp.read ();
932         } catch (...) {
933                 throw KDMError (_("Could not read DCP to make KDM for"));
934         }
935         
936         time_t now = time (0);
937         struct tm* tm = localtime (&now);
938         string const issue_date = libdcp::tm_to_string (tm);
939         
940         dcp.cpls().front()->set_mxf_keys (key ());
941         
942         return libdcp::KDM (dcp.cpls().front(), signer, target, from, until, "DCP-o-matic", issue_date);
943 }
944
945 list<libdcp::KDM>
946 Film::make_kdms (
947         list<shared_ptr<Screen> > screens,
948         boost::filesystem::path dcp,
949         boost::posix_time::ptime from,
950         boost::posix_time::ptime until
951         ) const
952 {
953         list<libdcp::KDM> kdms;
954
955         for (list<shared_ptr<Screen> >::iterator i = screens.begin(); i != screens.end(); ++i) {
956                 kdms.push_back (make_kdm ((*i)->certificate, dcp, from, until));
957         }
958
959         return kdms;
960 }