Merge FilmState / Film.
[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 "decoder_factory.h"
27 #include "decoder.h"
28 #include "imagemagick_encoder.h"
29 #include "transcoder.h"
30 #include "log.h"
31 #include "film.h"
32
33 using namespace std;
34 using namespace boost;
35
36 ExamineContentJob::ExamineContentJob (shared_ptr<Film> f, shared_ptr<Job> req)
37         : Job (f, req)
38 {
39
40 }
41
42 ExamineContentJob::~ExamineContentJob ()
43 {
44 }
45
46 string
47 ExamineContentJob::name () const
48 {
49         if (_film->name().empty ()) {
50                 return "Examine content";
51         }
52         
53         return String::compose ("Examine content of %1", _film->name());
54 }
55
56 void
57 ExamineContentJob::run ()
58 {
59         /* Decode the content to get an accurate length */
60         
61         shared_ptr<Options> o (new Options ("", "", ""));
62         o->out_size = Size (512, 512);
63         o->apply_crop = false;
64
65         descend (0.5);
66
67         _decoder = decoder_factory (_film, o, this, true, true);
68         _decoder->go ();
69
70         _film->set_length (_decoder->last_video_frame ());
71
72         _film->log()->log (String::compose ("Video length is %1 frames", _decoder->last_video_frame()));
73
74         ascend ();
75
76         /* Now make thumbnails for it */
77
78         descend (0.5);
79
80         try {
81                 o.reset (new Options (_film->dir ("thumbs"), ".png", ""));
82                 o->out_size = _film->size ();
83                 o->apply_crop = false;
84                 o->decode_audio = false;
85                 o->decode_video_frequency = 128;
86                 o->decode_subtitles = true;
87                 shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (_film, o));
88                 Transcoder w (_film, o, this, e);
89                 w.go ();
90                 
91         } catch (std::exception& e) {
92
93                 ascend ();
94                 set_progress (1);
95                 set_error (e.what ());
96                 set_state (FINISHED_ERROR);
97                 return;
98                 
99         }
100
101         ascend ();
102         set_progress (1);
103         set_state (FINISHED_OK);
104 }
105
106 int
107 ExamineContentJob::last_video_frame () const
108 {
109         return _decoder->last_video_frame ();
110 }