Do audio/video pts sync in a hopefully much more sensible way.
[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
74         _log->log (String::compose ("Video length is %1 frames", _decoder->last_video_frame()));
75
76         ascend ();
77
78         /* Now make thumbnails for it */
79
80         descend (0.5);
81
82         try {
83                 o.reset (new Options (fs->dir ("thumbs"), ".png", ""));
84                 o->out_size = fs->size ();
85                 o->apply_crop = false;
86                 o->decode_audio = false;
87                 o->decode_video_frequency = 128;
88                 o->decode_subtitles = true;
89                 shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (fs, o, _log));
90                 Transcoder w (fs, o, this, _log, e);
91                 w.go ();
92                 
93         } catch (std::exception& e) {
94
95                 ascend ();
96                 set_progress (1);
97                 set_error (e.what ());
98                 set_state (FINISHED_ERROR);
99                 return;
100                 
101         }
102
103         ascend ();
104         set_progress (1);
105         set_state (FINISHED_OK);
106 }
107
108 int
109 ExamineContentJob::last_video_frame () const
110 {
111         return _decoder->last_video_frame ();
112 }