A few fixes to still image mode.
[dcpomatic.git] / src / lib / film.cc
1 /*
2     Copyright (C) 2012 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 "film.h"
33 #include "format.h"
34 #include "job.h"
35 #include "filter.h"
36 #include "transcoder.h"
37 #include "util.h"
38 #include "job_manager.h"
39 #include "ab_transcode_job.h"
40 #include "transcode_job.h"
41 #include "scp_dcp_job.h"
42 #include "make_dcp_job.h"
43 #include "log.h"
44 #include "options.h"
45 #include "exceptions.h"
46 #include "examine_content_job.h"
47 #include "scaler.h"
48 #include "decoder_factory.h"
49 #include "config.h"
50 #include "check_hashes_job.h"
51 #include "version.h"
52 #include "ui_signaller.h"
53 #include "video_decoder.h"
54 #include "audio_decoder.h"
55 #include "external_audio_decoder.h"
56
57 using std::string;
58 using std::stringstream;
59 using std::multimap;
60 using std::pair;
61 using std::map;
62 using std::vector;
63 using std::ifstream;
64 using std::ofstream;
65 using std::setfill;
66 using std::min;
67 using std::make_pair;
68 using std::cout;
69 using boost::shared_ptr;
70 using boost::lexical_cast;
71 using boost::to_upper_copy;
72 using boost::ends_with;
73 using boost::starts_with;
74 using boost::optional;
75
76 int const Film::state_version = 1;
77
78 /** Construct a Film object in a given directory, reading any metadata
79  *  file that exists in that directory.  An exception will be thrown if
80  *  must_exist is true and the specified directory does not exist.
81  *
82  *  @param d Film directory.
83  *  @param must_exist true to throw an exception if does not exist.
84  */
85
86 Film::Film (string d, bool must_exist)
87         : _use_dci_name (true)
88         , _trust_content_header (true)
89         , _dcp_content_type (0)
90         , _format (0)
91         , _scaler (Scaler::from_id ("bicubic"))
92         , _dcp_trim_start (0)
93         , _dcp_trim_end (0)
94         , _dcp_ab (false)
95         , _use_content_audio (true)
96         , _audio_gain (0)
97         , _audio_delay (0)
98         , _still_duration (10)
99         , _with_subtitles (false)
100         , _subtitle_offset (0)
101         , _subtitle_scale (1)
102         , _frames_per_second (0)
103         , _dirty (false)
104 {
105         /* Make state.directory a complete path without ..s (where possible)
106            (Code swiped from Adam Bowen on stackoverflow)
107         */
108         
109         boost::filesystem::path p (boost::filesystem::system_complete (d));
110         boost::filesystem::path result;
111         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
112                 if (*i == "..") {
113                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
114                                 result /= *i;
115                         } else {
116                                 result = result.parent_path ();
117                         }
118                 } else if (*i != ".") {
119                         result /= *i;
120                 }
121         }
122
123         set_directory (result.string ());
124         
125         if (!boost::filesystem::exists (directory())) {
126                 if (must_exist) {
127                         throw OpenFileError (directory());
128                 } else {
129                         boost::filesystem::create_directory (directory());
130                 }
131         }
132
133         _external_audio_stream = ExternalAudioStream::create ();
134
135         read_metadata ();
136
137         _log = new FileLog (file ("log"));
138         set_dci_date_today ();
139 }
140
141 Film::Film (Film const & o)
142         : _log (0)
143         , _directory         (o._directory)
144         , _name              (o._name)
145         , _use_dci_name      (o._use_dci_name)
146         , _content           (o._content)
147         , _trust_content_header (o._trust_content_header)
148         , _dcp_content_type  (o._dcp_content_type)
149         , _format            (o._format)
150         , _crop              (o._crop)
151         , _filters           (o._filters)
152         , _scaler            (o._scaler)
153         , _dcp_trim_start    (o._dcp_trim_start)
154         , _dcp_trim_end      (o._dcp_trim_end)
155         , _dcp_ab            (o._dcp_ab)
156         , _content_audio_stream (o._content_audio_stream)
157         , _external_audio    (o._external_audio)
158         , _use_content_audio (o._use_content_audio)
159         , _audio_gain        (o._audio_gain)
160         , _audio_delay       (o._audio_delay)
161         , _still_duration    (o._still_duration)
162         , _subtitle_stream   (o._subtitle_stream)
163         , _with_subtitles    (o._with_subtitles)
164         , _subtitle_offset   (o._subtitle_offset)
165         , _subtitle_scale    (o._subtitle_scale)
166         , _audio_language    (o._audio_language)
167         , _subtitle_language (o._subtitle_language)
168         , _territory         (o._territory)
169         , _rating            (o._rating)
170         , _studio            (o._studio)
171         , _facility          (o._facility)
172         , _package_type      (o._package_type)
173         , _size              (o._size)
174         , _length            (o._length)
175         , _content_digest    (o._content_digest)
176         , _content_audio_streams (o._content_audio_streams)
177         , _external_audio_stream (o._external_audio_stream)
178         , _subtitle_streams  (o._subtitle_streams)
179         , _frames_per_second (o._frames_per_second)
180         , _dirty             (o._dirty)
181 {
182
183 }
184
185 Film::~Film ()
186 {
187         delete _log;
188 }
189           
190 /** @return The path to the directory to write JPEG2000 files to */
191 string
192 Film::j2k_dir () const
193 {
194         assert (format());
195
196         boost::filesystem::path p;
197
198         /* Start with j2c */
199         p /= "j2c";
200
201         pair<string, string> f = Filter::ffmpeg_strings (filters());
202
203         /* Write stuff to specify the filter / post-processing settings that are in use,
204            so that we don't get confused about J2K files generated using different
205            settings.
206         */
207         stringstream s;
208         s << format()->id()
209           << "_" << content_digest()
210           << "_" << crop().left << "_" << crop().right << "_" << crop().top << "_" << crop().bottom
211           << "_" << f.first << "_" << f.second
212           << "_" << scaler()->id();
213
214         p /= s.str ();
215
216         /* Similarly for the A/B case */
217         if (dcp_ab()) {
218                 stringstream s;
219                 pair<string, string> fa = Filter::ffmpeg_strings (Config::instance()->reference_filters());
220                 s << "ab_" << Config::instance()->reference_scaler()->id() << "_" << fa.first << "_" << fa.second;
221                 p /= s.str ();
222         }
223         
224         return dir (p.string());
225 }
226
227 /** Add suitable Jobs to the JobManager to create a DCP for this Film.
228  *  @param true to transcode, false to use the WAV and J2K files that are already there.
229  */
230 void
231 Film::make_dcp (bool transcode)
232 {
233         set_dci_date_today ();
234         
235         if (dcp_name().find ("/") != string::npos) {
236                 throw BadSettingError ("name", "cannot contain slashes");
237         }
238         
239         log()->log (String::compose ("DVD-o-matic %1 git %2 using %3", dvdomatic_version, dvdomatic_git_commit, dependency_version_summary()));
240
241         {
242                 char buffer[128];
243                 gethostname (buffer, sizeof (buffer));
244                 log()->log (String::compose ("Starting to make DCP on %1", buffer));
245         }
246                 
247         if (format() == 0) {
248                 throw MissingSettingError ("format");
249         }
250
251         if (content().empty ()) {
252                 throw MissingSettingError ("content");
253         }
254
255         if (dcp_content_type() == 0) {
256                 throw MissingSettingError ("content type");
257         }
258
259         if (name().empty()) {
260                 throw MissingSettingError ("name");
261         }
262
263         shared_ptr<EncodeOptions> oe (new EncodeOptions (j2k_dir(), ".j2c", dir ("wavs")));
264         oe->out_size = format()->dcp_size ();
265         oe->padding = format()->dcp_padding (shared_from_this ());
266         if (dcp_length ()) {
267                 oe->video_range = make_pair (dcp_trim_start(), dcp_trim_start() + dcp_length().get());
268                 if (audio_stream()) {
269                         oe->audio_range = make_pair (
270                                 video_frames_to_audio_frames (oe->video_range.get().first, audio_stream()->sample_rate(), frames_per_second()),
271                                 video_frames_to_audio_frames (oe->video_range.get().second, audio_stream()->sample_rate(), frames_per_second())
272                                 );
273                 }
274                         
275         }
276         
277         oe->video_skip = dcp_frame_rate (frames_per_second()).skip;
278
279         shared_ptr<DecodeOptions> od (new DecodeOptions);
280         od->decode_subtitles = with_subtitles ();
281
282         shared_ptr<Job> r;
283
284         if (transcode) {
285                 if (dcp_ab()) {
286                         r = JobManager::instance()->add (shared_ptr<Job> (new ABTranscodeJob (shared_from_this(), od, oe, shared_ptr<Job> ())));
287                 } else {
288                         r = JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this(), od, oe, shared_ptr<Job> ())));
289                 }
290         }
291
292         r = JobManager::instance()->add (shared_ptr<Job> (new CheckHashesJob (shared_from_this(), od, oe, r)));
293         JobManager::instance()->add (shared_ptr<Job> (new MakeDCPJob (shared_from_this(), oe, r)));
294 }
295
296 /** Start a job to examine our content file */
297 void
298 Film::examine_content ()
299 {
300         if (_examine_content_job) {
301                 return;
302         }
303
304         _examine_content_job.reset (new ExamineContentJob (shared_from_this(), shared_ptr<Job> ()));
305         _examine_content_job->Finished.connect (bind (&Film::examine_content_finished, this));
306         JobManager::instance()->add (_examine_content_job);
307 }
308
309 void
310 Film::examine_content_finished ()
311 {
312         _examine_content_job.reset ();
313 }
314
315 /** @return full paths to any audio files that this Film has */
316 vector<string>
317 Film::audio_files () const
318 {
319         vector<string> f;
320         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (dir("wavs")); i != boost::filesystem::directory_iterator(); ++i) {
321                 f.push_back (i->path().string ());
322         }
323
324         return f;
325 }
326
327 /** Start a job to send our DCP to the configured TMS */
328 void
329 Film::send_dcp_to_tms ()
330 {
331         shared_ptr<Job> j (new SCPDCPJob (shared_from_this(), shared_ptr<Job> ()));
332         JobManager::instance()->add (j);
333 }
334
335 /** Count the number of frames that have been encoded for this film.
336  *  @return frame count.
337  */
338 int
339 Film::encoded_frames () const
340 {
341         if (format() == 0) {
342                 return 0;
343         }
344
345         int N = 0;
346         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (j2k_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
347                 ++N;
348                 boost::this_thread::interruption_point ();
349         }
350
351         return N;
352 }
353
354 /** Write state to our `metadata' file */
355 void
356 Film::write_metadata () const
357 {
358         boost::mutex::scoped_lock lm (_state_mutex);
359
360         boost::filesystem::create_directories (directory());
361
362         string const m = file ("metadata");
363         ofstream f (m.c_str ());
364         if (!f.good ()) {
365                 throw CreateFileError (m);
366         }
367
368         f << "version " << state_version << "\n";
369
370         /* User stuff */
371         f << "name " << _name << "\n";
372         f << "use_dci_name " << _use_dci_name << "\n";
373         f << "content " << _content << "\n";
374         f << "trust_content_header " << (_trust_content_header ? "1" : "0") << "\n";
375         if (_dcp_content_type) {
376                 f << "dcp_content_type " << _dcp_content_type->pretty_name () << "\n";
377         }
378         if (_format) {
379                 f << "format " << _format->as_metadata () << "\n";
380         }
381         f << "left_crop " << _crop.left << "\n";
382         f << "right_crop " << _crop.right << "\n";
383         f << "top_crop " << _crop.top << "\n";
384         f << "bottom_crop " << _crop.bottom << "\n";
385         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
386                 f << "filter " << (*i)->id () << "\n";
387         }
388         f << "scaler " << _scaler->id () << "\n";
389         f << "dcp_trim_start " << _dcp_trim_start << "\n";
390         f << "dcp_trim_end " << _dcp_trim_end << "\n";
391         f << "dcp_ab " << (_dcp_ab ? "1" : "0") << "\n";
392         if (_content_audio_stream) {
393                 f << "selected_content_audio_stream " << _content_audio_stream->to_string() << "\n";
394         }
395         for (vector<string>::const_iterator i = _external_audio.begin(); i != _external_audio.end(); ++i) {
396                 f << "external_audio " << *i << "\n";
397         }
398         f << "use_content_audio " << (_use_content_audio ? "1" : "0") << "\n";
399         f << "audio_gain " << _audio_gain << "\n";
400         f << "audio_delay " << _audio_delay << "\n";
401         f << "still_duration " << _still_duration << "\n";
402         if (_subtitle_stream) {
403                 f << "selected_subtitle_stream " << _subtitle_stream->to_string() << "\n";
404         }
405         f << "with_subtitles " << _with_subtitles << "\n";
406         f << "subtitle_offset " << _subtitle_offset << "\n";
407         f << "subtitle_scale " << _subtitle_scale << "\n";
408         f << "audio_language " << _audio_language << "\n";
409         f << "subtitle_language " << _subtitle_language << "\n";
410         f << "territory " << _territory << "\n";
411         f << "rating " << _rating << "\n";
412         f << "studio " << _studio << "\n";
413         f << "facility " << _facility << "\n";
414         f << "package_type " << _package_type << "\n";
415
416         f << "width " << _size.width << "\n";
417         f << "height " << _size.height << "\n";
418         f << "length " << _length.get_value_or(0) << "\n";
419         f << "content_digest " << _content_digest << "\n";
420
421         for (vector<shared_ptr<AudioStream> >::const_iterator i = _content_audio_streams.begin(); i != _content_audio_streams.end(); ++i) {
422                 f << "content_audio_stream " << (*i)->to_string () << "\n";
423         }
424
425         f << "external_audio_stream " << _external_audio_stream->to_string() << "\n";
426
427         for (vector<shared_ptr<SubtitleStream> >::const_iterator i = _subtitle_streams.begin(); i != _subtitle_streams.end(); ++i) {
428                 f << "subtitle_stream " << (*i)->to_string () << "\n";
429         }
430
431         f << "frames_per_second " << _frames_per_second << "\n";
432         
433         _dirty = false;
434 }
435
436 /** Read state from our metadata file */
437 void
438 Film::read_metadata ()
439 {
440         boost::mutex::scoped_lock lm (_state_mutex);
441
442         _external_audio.clear ();
443         _content_audio_streams.clear ();
444         _subtitle_streams.clear ();
445
446         boost::optional<int> version;
447
448         /* Backward compatibility things */
449         boost::optional<int> audio_sample_rate;
450         boost::optional<int> audio_stream_index;
451         boost::optional<int> subtitle_stream_index;
452         
453         ifstream f (file ("metadata").c_str());
454         multimap<string, string> kv = read_key_value (f);
455
456         /* We need version before anything else */
457         multimap<string, string>::iterator v = kv.find ("version");
458         if (v != kv.end ()) {
459                 version = atoi (v->second.c_str());
460         }
461         
462         for (multimap<string, string>::const_iterator i = kv.begin(); i != kv.end(); ++i) {
463                 string const k = i->first;
464                 string const v = i->second;
465
466                 if (k == "audio_sample_rate") {
467                         audio_sample_rate = atoi (v.c_str());
468                 }
469
470                 /* User-specified stuff */
471                 if (k == "name") {
472                         _name = v;
473                 } else if (k == "use_dci_name") {
474                         _use_dci_name = (v == "1");
475                 } else if (k == "content") {
476                         _content = v;
477                 } else if (k == "trust_content_header") {
478                         _trust_content_header = (v == "1");
479                 } else if (k == "dcp_content_type") {
480                         _dcp_content_type = DCPContentType::from_pretty_name (v);
481                 } else if (k == "format") {
482                         _format = Format::from_metadata (v);
483                 } else if (k == "left_crop") {
484                         _crop.left = atoi (v.c_str ());
485                 } else if (k == "right_crop") {
486                         _crop.right = atoi (v.c_str ());
487                 } else if (k == "top_crop") {
488                         _crop.top = atoi (v.c_str ());
489                 } else if (k == "bottom_crop") {
490                         _crop.bottom = atoi (v.c_str ());
491                 } else if (k == "filter") {
492                         _filters.push_back (Filter::from_id (v));
493                 } else if (k == "scaler") {
494                         _scaler = Scaler::from_id (v);
495                 } else if (k == "dcp_trim_start") {
496                         _dcp_trim_start = atoi (v.c_str ());
497                 } else if (k == "dcp_trim_end") {
498                         _dcp_trim_end = atoi (v.c_str ());
499                 } else if (k == "dcp_ab") {
500                         _dcp_ab = (v == "1");
501                 } else if (k == "selected_content_audio_stream" || (!version && k == "selected_audio_stream")) {
502                         if (!version) {
503                                 audio_stream_index = atoi (v.c_str ());
504                         } else {
505                                 _content_audio_stream = audio_stream_factory (v, version);
506                         }
507                 } else if (k == "external_audio") {
508                         _external_audio.push_back (v);
509                 } else if (k == "use_content_audio") {
510                         _use_content_audio = (v == "1");
511                 } else if (k == "audio_gain") {
512                         _audio_gain = atof (v.c_str ());
513                 } else if (k == "audio_delay") {
514                         _audio_delay = atoi (v.c_str ());
515                 } else if (k == "still_duration") {
516                         _still_duration = atoi (v.c_str ());
517                 } else if (k == "selected_subtitle_stream") {
518                         if (!version) {
519                                 subtitle_stream_index = atoi (v.c_str ());
520                         } else {
521                                 _subtitle_stream = subtitle_stream_factory (v, version);
522                         }
523                 } else if (k == "with_subtitles") {
524                         _with_subtitles = (v == "1");
525                 } else if (k == "subtitle_offset") {
526                         _subtitle_offset = atoi (v.c_str ());
527                 } else if (k == "subtitle_scale") {
528                         _subtitle_scale = atof (v.c_str ());
529                 } else if (k == "audio_language") {
530                         _audio_language = v;
531                 } else if (k == "subtitle_language") {
532                         _subtitle_language = v;
533                 } else if (k == "territory") {
534                         _territory = v;
535                 } else if (k == "rating") {
536                         _rating = v;
537                 } else if (k == "studio") {
538                         _studio = v;
539                 } else if (k == "facility") {
540                         _facility = v;
541                 } else if (k == "package_type") {
542                         _package_type = v;
543                 }
544                 
545                 /* Cached stuff */
546                 if (k == "width") {
547                         _size.width = atoi (v.c_str ());
548                 } else if (k == "height") {
549                         _size.height = atoi (v.c_str ());
550                 } else if (k == "length") {
551                         int const vv = atoi (v.c_str ());
552                         if (vv) {
553                                 _length = vv;
554                         }
555                 } else if (k == "content_digest") {
556                         _content_digest = v;
557                 } else if (k == "content_audio_stream" || (!version && k == "audio_stream")) {
558                         _content_audio_streams.push_back (audio_stream_factory (v, version));
559                 } else if (k == "external_audio_stream") {
560                         _external_audio_stream = audio_stream_factory (v, version);
561                 } else if (k == "subtitle_stream") {
562                         _subtitle_streams.push_back (subtitle_stream_factory (v, version));
563                 } else if (k == "frames_per_second") {
564                         _frames_per_second = atof (v.c_str ());
565                 }
566         }
567
568         if (!version) {
569                 if (audio_sample_rate) {
570                         /* version < 1 didn't specify sample rate in the audio streams, so fill it in here */
571                         for (vector<shared_ptr<AudioStream> >::iterator i = _content_audio_streams.begin(); i != _content_audio_streams.end(); ++i) {
572                                 (*i)->set_sample_rate (audio_sample_rate.get());
573                         }
574                 }
575
576                 /* also the selected stream was specified as an index */
577                 if (audio_stream_index && audio_stream_index.get() >= 0 && audio_stream_index.get() < (int) _content_audio_streams.size()) {
578                         _content_audio_stream = _content_audio_streams[audio_stream_index.get()];
579                 }
580
581                 /* similarly the subtitle */
582                 if (subtitle_stream_index && subtitle_stream_index.get() >= 0 && subtitle_stream_index.get() < (int) _subtitle_streams.size()) {
583                         _subtitle_stream = _subtitle_streams[subtitle_stream_index.get()];
584                 }
585         }
586                 
587         _dirty = false;
588 }
589
590 Size
591 Film::cropped_size (Size s) const
592 {
593         boost::mutex::scoped_lock lm (_state_mutex);
594         s.width -= _crop.left + _crop.right;
595         s.height -= _crop.top + _crop.bottom;
596         return s;
597 }
598
599 /** Given a directory name, return its full path within the Film's directory.
600  *  The directory (and its parents) will be created if they do not exist.
601  */
602 string
603 Film::dir (string d) const
604 {
605         boost::mutex::scoped_lock lm (_directory_mutex);
606         boost::filesystem::path p;
607         p /= _directory;
608         p /= d;
609         boost::filesystem::create_directories (p);
610         return p.string ();
611 }
612
613 /** Given a file or directory name, return its full path within the Film's directory.
614  *  _directory_mutex must not be locked on entry.
615  */
616 string
617 Film::file (string f) const
618 {
619         boost::mutex::scoped_lock lm (_directory_mutex);
620         boost::filesystem::path p;
621         p /= _directory;
622         p /= f;
623         return p.string ();
624 }
625
626 /** @return full path of the content (actual video) file
627  *  of the Film.
628  */
629 string
630 Film::content_path () const
631 {
632         boost::mutex::scoped_lock lm (_state_mutex);
633         if (boost::filesystem::path(_content).has_root_directory ()) {
634                 return _content;
635         }
636
637         return file (_content);
638 }
639
640 ContentType
641 Film::content_type () const
642 {
643         if (boost::filesystem::is_directory (_content)) {
644                 /* Directory of images, we assume */
645                 return VIDEO;
646         }
647
648         if (still_image_file (_content)) {
649                 return STILL;
650         }
651
652         return VIDEO;
653 }
654
655 /** @return The sampling rate that we will resample the audio to */
656 int
657 Film::target_audio_sample_rate () const
658 {
659         if (!audio_stream()) {
660                 return 0;
661         }
662         
663         /* Resample to a DCI-approved sample rate */
664         double t = dcp_audio_sample_rate (audio_stream()->sample_rate());
665
666         DCPFrameRate dfr = dcp_frame_rate (frames_per_second ());
667
668         /* Compensate for the fact that video will be rounded to the
669            nearest integer number of frames per second.
670         */
671         if (dfr.run_fast) {
672                 t *= _frames_per_second * dfr.skip / dfr.frames_per_second;
673         }
674
675         return rint (t);
676 }
677
678 boost::optional<SourceFrame>
679 Film::dcp_length () const
680 {
681         if (!length()) {
682                 return boost::optional<SourceFrame> ();
683         }
684
685         return length().get() - dcp_trim_start() - dcp_trim_end();
686 }
687
688 /** @return a DCI-compliant name for a DCP of this film */
689 string
690 Film::dci_name () const
691 {
692         stringstream d;
693
694         string fixed_name = to_upper_copy (name());
695         for (size_t i = 0; i < fixed_name.length(); ++i) {
696                 if (fixed_name[i] == ' ') {
697                         fixed_name[i] = '-';
698                 }
699         }
700
701         /* Spec is that the name part should be maximum 14 characters, as I understand it */
702         if (fixed_name.length() > 14) {
703                 fixed_name = fixed_name.substr (0, 14);
704         }
705
706         d << fixed_name << "_";
707
708         if (dcp_content_type()) {
709                 d << dcp_content_type()->dci_name() << "_";
710         }
711
712         if (format()) {
713                 d << format()->dci_name() << "_";
714         }
715
716         if (!audio_language().empty ()) {
717                 d << audio_language();
718                 if (!subtitle_language().empty() && with_subtitles()) {
719                         d << "-" << subtitle_language();
720                 } else {
721                         d << "-XX";
722                 }
723                         
724                 d << "_";
725         }
726
727         if (!territory().empty ()) {
728                 d << territory();
729                 if (!rating().empty ()) {
730                         d << "-" << rating();
731                 }
732                 d << "_";
733         }
734
735         switch (audio_channels()) {
736         case 1:
737                 d << "10_";
738                 break;
739         case 2:
740                 d << "20_";
741                 break;
742         case 6:
743                 d << "51_";
744                 break;
745         case 8:
746                 d << "71_";
747                 break;
748         }
749
750         d << "2K_";
751
752         if (!studio().empty ()) {
753                 d << studio() << "_";
754         }
755
756         d << boost::gregorian::to_iso_string (_dci_date) << "_";
757
758         if (!facility().empty ()) {
759                 d << facility() << "_";
760         }
761
762         if (!package_type().empty ()) {
763                 d << package_type();
764         }
765
766         return d.str ();
767 }
768
769 /** @return name to give the DCP */
770 string
771 Film::dcp_name () const
772 {
773         if (use_dci_name()) {
774                 return dci_name ();
775         }
776
777         return name();
778 }
779
780
781 void
782 Film::set_directory (string d)
783 {
784         boost::mutex::scoped_lock lm (_state_mutex);
785         _directory = d;
786         _dirty = true;
787 }
788
789 void
790 Film::set_name (string n)
791 {
792         {
793                 boost::mutex::scoped_lock lm (_state_mutex);
794                 _name = n;
795         }
796         signal_changed (NAME);
797 }
798
799 void
800 Film::set_use_dci_name (bool u)
801 {
802         {
803                 boost::mutex::scoped_lock lm (_state_mutex);
804                 _use_dci_name = u;
805         }
806         signal_changed (USE_DCI_NAME);
807 }
808
809 void
810 Film::set_content (string c)
811 {
812         string check = directory ();
813
814 #if BOOST_FILESYSTEM_VERSION == 3
815         boost::filesystem::path slash ("/");
816         string platform_slash = slash.make_preferred().string ();
817 #else
818 #ifdef DVDOMATIC_WINDOWS
819         string platform_slash = "\\";
820 #else
821         string platform_slash = "/";
822 #endif
823 #endif  
824
825         if (!ends_with (check, platform_slash)) {
826                 check += platform_slash;
827         }
828         
829         if (boost::filesystem::path(c).has_root_directory () && starts_with (c, check)) {
830                 c = c.substr (_directory.length() + 1);
831         }
832
833         string old_content;
834         
835         {
836                 boost::mutex::scoped_lock lm (_state_mutex);
837                 if (c == _content) {
838                         return;
839                 }
840
841                 old_content = _content;
842                 _content = c;
843         }
844
845         /* Reset streams here in case the new content doesn't have one or the other */
846         _content_audio_stream = shared_ptr<AudioStream> ();
847         _subtitle_stream = shared_ptr<SubtitleStream> ();
848
849         /* Create a temporary decoder so that we can get information
850            about the content.
851         */
852
853         try {
854                 shared_ptr<DecodeOptions> o (new DecodeOptions);
855                 Decoders d = decoder_factory (shared_from_this(), o, 0);
856                 
857                 set_size (d.video->native_size ());
858                 set_frames_per_second (d.video->frames_per_second ());
859                 set_subtitle_streams (d.video->subtitle_streams ());
860                 if (d.audio) {
861                         set_content_audio_streams (d.audio->audio_streams ());
862                 }
863
864                 /* Start off with the first audio and subtitle streams */
865                 if (d.audio && !d.audio->audio_streams().empty()) {
866                         set_content_audio_stream (d.audio->audio_streams().front());
867                 }
868                 
869                 if (!d.video->subtitle_streams().empty()) {
870                         set_subtitle_stream (d.video->subtitle_streams().front());
871                 }
872                 
873                 {
874                         boost::mutex::scoped_lock lm (_state_mutex);
875                         _content = c;
876                 }
877                 
878                 signal_changed (CONTENT);
879                 
880                 examine_content ();
881
882         } catch (...) {
883
884                 boost::mutex::scoped_lock lm (_state_mutex);
885                 _content = old_content;
886                 throw;
887
888         }
889 }
890
891 void
892 Film::set_trust_content_header (bool t)
893 {
894         {
895                 boost::mutex::scoped_lock lm (_state_mutex);
896                 _trust_content_header = t;
897         }
898         
899         signal_changed (TRUST_CONTENT_HEADER);
900
901         if (!_trust_content_header && !content().empty()) {
902                 /* We just said that we don't trust the content's header */
903                 examine_content ();
904         }
905 }
906                
907 void
908 Film::set_dcp_content_type (DCPContentType const * t)
909 {
910         {
911                 boost::mutex::scoped_lock lm (_state_mutex);
912                 _dcp_content_type = t;
913         }
914         signal_changed (DCP_CONTENT_TYPE);
915 }
916
917 void
918 Film::set_format (Format const * f)
919 {
920         {
921                 boost::mutex::scoped_lock lm (_state_mutex);
922                 _format = f;
923         }
924         signal_changed (FORMAT);
925 }
926
927 void
928 Film::set_crop (Crop c)
929 {
930         {
931                 boost::mutex::scoped_lock lm (_state_mutex);
932                 _crop = c;
933         }
934         signal_changed (CROP);
935 }
936
937 void
938 Film::set_left_crop (int c)
939 {
940         {
941                 boost::mutex::scoped_lock lm (_state_mutex);
942                 
943                 if (_crop.left == c) {
944                         return;
945                 }
946                 
947                 _crop.left = c;
948         }
949         signal_changed (CROP);
950 }
951
952 void
953 Film::set_right_crop (int c)
954 {
955         {
956                 boost::mutex::scoped_lock lm (_state_mutex);
957                 if (_crop.right == c) {
958                         return;
959                 }
960                 
961                 _crop.right = c;
962         }
963         signal_changed (CROP);
964 }
965
966 void
967 Film::set_top_crop (int c)
968 {
969         {
970                 boost::mutex::scoped_lock lm (_state_mutex);
971                 if (_crop.top == c) {
972                         return;
973                 }
974                 
975                 _crop.top = c;
976         }
977         signal_changed (CROP);
978 }
979
980 void
981 Film::set_bottom_crop (int c)
982 {
983         {
984                 boost::mutex::scoped_lock lm (_state_mutex);
985                 if (_crop.bottom == c) {
986                         return;
987                 }
988                 
989                 _crop.bottom = c;
990         }
991         signal_changed (CROP);
992 }
993
994 void
995 Film::set_filters (vector<Filter const *> f)
996 {
997         {
998                 boost::mutex::scoped_lock lm (_state_mutex);
999                 _filters = f;
1000         }
1001         signal_changed (FILTERS);
1002 }
1003
1004 void
1005 Film::set_scaler (Scaler const * s)
1006 {
1007         {
1008                 boost::mutex::scoped_lock lm (_state_mutex);
1009                 _scaler = s;
1010         }
1011         signal_changed (SCALER);
1012 }
1013
1014 void
1015 Film::set_dcp_trim_start (int t)
1016 {
1017         {
1018                 boost::mutex::scoped_lock lm (_state_mutex);
1019                 _dcp_trim_start = t;
1020         }
1021         signal_changed (DCP_TRIM_START);
1022 }
1023
1024 void
1025 Film::set_dcp_trim_end (int t)
1026 {
1027         {
1028                 boost::mutex::scoped_lock lm (_state_mutex);
1029                 _dcp_trim_end = t;
1030         }
1031         signal_changed (DCP_TRIM_END);
1032 }
1033
1034 void
1035 Film::set_dcp_ab (bool a)
1036 {
1037         {
1038                 boost::mutex::scoped_lock lm (_state_mutex);
1039                 _dcp_ab = a;
1040         }
1041         signal_changed (DCP_AB);
1042 }
1043
1044 void
1045 Film::set_content_audio_stream (shared_ptr<AudioStream> s)
1046 {
1047         {
1048                 boost::mutex::scoped_lock lm (_state_mutex);
1049                 _content_audio_stream = s;
1050         }
1051         signal_changed (CONTENT_AUDIO_STREAM);
1052 }
1053
1054 void
1055 Film::set_external_audio (vector<string> a)
1056 {
1057         {
1058                 boost::mutex::scoped_lock lm (_state_mutex);
1059                 _external_audio = a;
1060         }
1061
1062         shared_ptr<DecodeOptions> o (new DecodeOptions);
1063         shared_ptr<ExternalAudioDecoder> decoder (new ExternalAudioDecoder (shared_from_this(), o, 0));
1064         if (decoder->audio_stream()) {
1065                 _external_audio_stream = decoder->audio_stream ();
1066         }
1067         
1068         signal_changed (EXTERNAL_AUDIO);
1069 }
1070
1071 void
1072 Film::set_use_content_audio (bool e)
1073 {
1074         {
1075                 boost::mutex::scoped_lock lm (_state_mutex);
1076                 _use_content_audio = e;
1077         }
1078
1079         signal_changed (USE_CONTENT_AUDIO);
1080 }
1081
1082 void
1083 Film::set_audio_gain (float g)
1084 {
1085         {
1086                 boost::mutex::scoped_lock lm (_state_mutex);
1087                 _audio_gain = g;
1088         }
1089         signal_changed (AUDIO_GAIN);
1090 }
1091
1092 void
1093 Film::set_audio_delay (int d)
1094 {
1095         {
1096                 boost::mutex::scoped_lock lm (_state_mutex);
1097                 _audio_delay = d;
1098         }
1099         signal_changed (AUDIO_DELAY);
1100 }
1101
1102 void
1103 Film::set_still_duration (int d)
1104 {
1105         {
1106                 boost::mutex::scoped_lock lm (_state_mutex);
1107                 _still_duration = d;
1108         }
1109         signal_changed (STILL_DURATION);
1110 }
1111
1112 void
1113 Film::set_subtitle_stream (shared_ptr<SubtitleStream> s)
1114 {
1115         {
1116                 boost::mutex::scoped_lock lm (_state_mutex);
1117                 _subtitle_stream = s;
1118         }
1119         signal_changed (SUBTITLE_STREAM);
1120 }
1121
1122 void
1123 Film::set_with_subtitles (bool w)
1124 {
1125         {
1126                 boost::mutex::scoped_lock lm (_state_mutex);
1127                 _with_subtitles = w;
1128         }
1129         signal_changed (WITH_SUBTITLES);
1130 }
1131
1132 void
1133 Film::set_subtitle_offset (int o)
1134 {
1135         {
1136                 boost::mutex::scoped_lock lm (_state_mutex);
1137                 _subtitle_offset = o;
1138         }
1139         signal_changed (SUBTITLE_OFFSET);
1140 }
1141
1142 void
1143 Film::set_subtitle_scale (float s)
1144 {
1145         {
1146                 boost::mutex::scoped_lock lm (_state_mutex);
1147                 _subtitle_scale = s;
1148         }
1149         signal_changed (SUBTITLE_SCALE);
1150 }
1151
1152 void
1153 Film::set_audio_language (string l)
1154 {
1155         {
1156                 boost::mutex::scoped_lock lm (_state_mutex);
1157                 _audio_language = l;
1158         }
1159         signal_changed (DCI_METADATA);
1160 }
1161
1162 void
1163 Film::set_subtitle_language (string l)
1164 {
1165         {
1166                 boost::mutex::scoped_lock lm (_state_mutex);
1167                 _subtitle_language = l;
1168         }
1169         signal_changed (DCI_METADATA);
1170 }
1171
1172 void
1173 Film::set_territory (string t)
1174 {
1175         {
1176                 boost::mutex::scoped_lock lm (_state_mutex);
1177                 _territory = t;
1178         }
1179         signal_changed (DCI_METADATA);
1180 }
1181
1182 void
1183 Film::set_rating (string r)
1184 {
1185         {
1186                 boost::mutex::scoped_lock lm (_state_mutex);
1187                 _rating = r;
1188         }
1189         signal_changed (DCI_METADATA);
1190 }
1191
1192 void
1193 Film::set_studio (string s)
1194 {
1195         {
1196                 boost::mutex::scoped_lock lm (_state_mutex);
1197                 _studio = s;
1198         }
1199         signal_changed (DCI_METADATA);
1200 }
1201
1202 void
1203 Film::set_facility (string f)
1204 {
1205         {
1206                 boost::mutex::scoped_lock lm (_state_mutex);
1207                 _facility = f;
1208         }
1209         signal_changed (DCI_METADATA);
1210 }
1211
1212 void
1213 Film::set_package_type (string p)
1214 {
1215         {
1216                 boost::mutex::scoped_lock lm (_state_mutex);
1217                 _package_type = p;
1218         }
1219         signal_changed (DCI_METADATA);
1220 }
1221
1222 void
1223 Film::set_size (Size s)
1224 {
1225         {
1226                 boost::mutex::scoped_lock lm (_state_mutex);
1227                 _size = s;
1228         }
1229         signal_changed (SIZE);
1230 }
1231
1232 void
1233 Film::set_length (SourceFrame l)
1234 {
1235         {
1236                 boost::mutex::scoped_lock lm (_state_mutex);
1237                 _length = l;
1238         }
1239         signal_changed (LENGTH);
1240 }
1241
1242 void
1243 Film::unset_length ()
1244 {
1245         {
1246                 boost::mutex::scoped_lock lm (_state_mutex);
1247                 _length = boost::none;
1248         }
1249         signal_changed (LENGTH);
1250 }       
1251
1252 void
1253 Film::set_content_digest (string d)
1254 {
1255         {
1256                 boost::mutex::scoped_lock lm (_state_mutex);
1257                 _content_digest = d;
1258         }
1259         _dirty = true;
1260 }
1261
1262 void
1263 Film::set_content_audio_streams (vector<shared_ptr<AudioStream> > s)
1264 {
1265         {
1266                 boost::mutex::scoped_lock lm (_state_mutex);
1267                 _content_audio_streams = s;
1268         }
1269         signal_changed (CONTENT_AUDIO_STREAMS);
1270 }
1271
1272 void
1273 Film::set_subtitle_streams (vector<shared_ptr<SubtitleStream> > s)
1274 {
1275         {
1276                 boost::mutex::scoped_lock lm (_state_mutex);
1277                 _subtitle_streams = s;
1278         }
1279         signal_changed (SUBTITLE_STREAMS);
1280 }
1281
1282 void
1283 Film::set_frames_per_second (float f)
1284 {
1285         {
1286                 boost::mutex::scoped_lock lm (_state_mutex);
1287                 _frames_per_second = f;
1288         }
1289         signal_changed (FRAMES_PER_SECOND);
1290 }
1291         
1292 void
1293 Film::signal_changed (Property p)
1294 {
1295         {
1296                 boost::mutex::scoped_lock lm (_state_mutex);
1297                 _dirty = true;
1298         }
1299
1300         if (ui_signaller) {
1301                 ui_signaller->emit (boost::bind (boost::ref (Changed), p));
1302         }
1303 }
1304
1305 int
1306 Film::audio_channels () const
1307 {
1308         shared_ptr<AudioStream> s = audio_stream ();
1309         if (!s) {
1310                 return 0;
1311         }
1312
1313         return s->channels ();
1314 }
1315
1316 void
1317 Film::set_dci_date_today ()
1318 {
1319         _dci_date = boost::gregorian::day_clock::local_day ();
1320 }
1321
1322 boost::shared_ptr<AudioStream>
1323 Film::audio_stream () const
1324 {
1325         if (use_content_audio()) {
1326                 return _content_audio_stream;
1327         }
1328
1329         return _external_audio_stream;
1330 }