Move trimming into the encoder; seems to be cleaner.
[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 <boost/filesystem.hpp>
25 #include "examine_content_job.h"
26 #include "options.h"
27 #include "decoder_factory.h"
28 #include "decoder.h"
29 #include "imagemagick_encoder.h"
30 #include "transcoder.h"
31 #include "log.h"
32 #include "film.h"
33
34 using std::string;
35 using std::vector;
36 using boost::shared_ptr;
37
38 ExamineContentJob::ExamineContentJob (shared_ptr<Film> f, shared_ptr<Job> req)
39         : Job (f, req)
40 {
41
42 }
43
44 ExamineContentJob::~ExamineContentJob ()
45 {
46 }
47
48 string
49 ExamineContentJob::name () const
50 {
51         if (_film->name().empty ()) {
52                 return "Examine content";
53         }
54         
55         return String::compose ("Examine content of %1", _film->name());
56 }
57
58 void
59 ExamineContentJob::run ()
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 (_film, o, this);
70         _decoder->go ();
71
72         _film->set_length (_decoder->video_frame());
73
74         _film->log()->log (String::compose ("Video length is %1 frames", _film->length()));
75
76         ascend ();
77
78         /* Now make thumbnails for it */
79
80         descend (0.5);
81
82         try {
83                 o.reset (new Options (_film->dir ("thumbs"), ".png", ""));
84                 o->out_size = _film->size ();
85                 o->apply_crop = false;
86                 o->decode_audio = false;
87                 if (_film->length() > 0) {
88                         o->decode_video_skip = _film->length().get() / 128;
89                 } else {
90                         o->decode_video_skip = 0;
91                 }
92                 o->decode_subtitles = true;
93                 shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (_film, o));
94                 Transcoder w (_film, o, this, e);
95                 w.go ();
96                 
97         } catch (std::exception& e) {
98
99                 ascend ();
100                 set_progress (1);
101                 set_error (e.what ());
102                 set_state (FINISHED_ERROR);
103                 return;
104                 
105         }
106
107         string const tdir = _film->dir ("thumbs");
108         vector<SourceFrame> thumbs;
109
110         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (tdir); i != boost::filesystem::directory_iterator(); ++i) {
111
112                 /* Aah, the sweet smell of progress */
113 #if BOOST_FILESYSTEM_VERSION == 3               
114                 string const l = boost::filesystem::path(*i).leaf().generic_string();
115 #else
116                 string const l = i->leaf ();
117 #endif
118                 
119                 size_t const d = l.find (".png");
120                 size_t const t = l.find (".tmp");
121                 if (d != string::npos && t == string::npos) {
122                         thumbs.push_back (atoi (l.substr (0, d).c_str()));
123                 }
124         }
125
126         sort (thumbs.begin(), thumbs.end());
127         _film->set_thumbs (thumbs);     
128
129         ascend ();
130         set_progress (1);
131         set_state (FINISHED_OK);
132 }