Partial fix to sync according to pts.
[dcpomatic.git] / src / lib / examine_content_job.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 /** @file  src/examine_content_job.cc
21  *  @brief A class to run through content at high speed to find its length.
22  */
23
24 #include "examine_content_job.h"
25 #include "options.h"
26 #include "film_state.h"
27 #include "decoder_factory.h"
28 #include "decoder.h"
29 #include "imagemagick_encoder.h"
30 #include "transcoder.h"
31 #include "log.h"
32
33 using namespace std;
34 using namespace boost;
35
36 ExamineContentJob::ExamineContentJob (shared_ptr<const FilmState> fs, Log* l, shared_ptr<Job> req)
37         : Job (fs, l, req)
38 {
39
40 }
41
42 ExamineContentJob::~ExamineContentJob ()
43 {
44 }
45
46 string
47 ExamineContentJob::name () const
48 {
49         if (_fs->name().empty ()) {
50                 return "Examine content";
51         }
52         
53         return String::compose ("Examine content of %1", _fs->name());
54 }
55
56 void
57 ExamineContentJob::run ()
58 {
59         shared_ptr<FilmState> fs = _fs->state_copy ();
60         
61         /* Decode the content to get an accurate length */
62         
63         shared_ptr<Options> o (new Options ("", "", ""));
64         o->out_size = Size (512, 512);
65         o->apply_crop = false;
66
67         descend (0.5);
68
69         _decoder = decoder_factory (fs, o, this, _log, true, true);
70         _decoder->go ();
71
72         fs->set_length (_decoder->last_video_frame ());
73         fs->set_audio_delay (-_decoder->audio_to_discard ());
74
75         _log->log (String::compose ("Video length is %1 frames", _decoder->last_video_frame()));
76         _log->log (String::compose ("%1ms of audio to discard", _decoder->audio_to_discard()));
77
78         ascend ();
79
80         /* Now make thumbnails for it */
81
82         descend (0.5);
83
84         try {
85                 o.reset (new Options (fs->dir ("thumbs"), ".png", ""));
86                 o->out_size = fs->size ();
87                 o->apply_crop = false;
88                 o->decode_audio = false;
89                 o->decode_video_frequency = 128;
90                 o->decode_subtitles = true;
91                 shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (fs, o, _log));
92                 Transcoder w (fs, o, this, _log, e);
93                 w.go ();
94                 
95         } catch (std::exception& e) {
96
97                 ascend ();
98                 set_progress (1);
99                 set_error (e.what ());
100                 set_state (FINISHED_ERROR);
101                 return;
102                 
103         }
104
105         ascend ();
106         set_progress (1);
107         set_state (FINISHED_OK);
108 }
109
110 int
111 ExamineContentJob::last_video_frame () const
112 {
113         return _decoder->last_video_frame ();
114 }