Untested external audio support; AB transcodes still broken.
[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 #include "video_decoder.h"
34
35 using std::string;
36 using std::vector;
37 using std::pair;
38 using boost::shared_ptr;
39
40 ExamineContentJob::ExamineContentJob (shared_ptr<Film> f, shared_ptr<Job> req)
41         : Job (f, req)
42 {
43
44 }
45
46 ExamineContentJob::~ExamineContentJob ()
47 {
48 }
49
50 string
51 ExamineContentJob::name () const
52 {
53         if (_film->name().empty ()) {
54                 return "Examine content";
55         }
56         
57         return String::compose ("Examine content of %1", _film->name());
58 }
59
60 void
61 ExamineContentJob::run ()
62 {
63         /* Decode the content to get an accurate length */
64
65         /* We don't want to use any existing length here, as progress
66            will be messed up.
67         */
68         _film->unset_length ();
69         
70         shared_ptr<Options> o (new Options ("", "", ""));
71         o->out_size = Size (512, 512);
72         o->apply_crop = false;
73         o->decode_audio = false;
74
75         descend (0.5);
76
77         pair<shared_ptr<VideoDecoder>, shared_ptr<AudioDecoder> > decoders = decoder_factory (_film, o, this);
78
79         set_progress_unknown ();
80         while (!decoders.first->pass()) {
81                 /* keep going */
82         }
83
84         _film->set_length (decoders.first->video_frame());
85
86         _film->log()->log (String::compose ("Video length is %1 frames", _film->length()));
87
88         ascend ();
89
90         /* Now make thumbnails for it */
91
92         descend (0.5);
93
94         try {
95                 o.reset (new Options (_film->dir ("thumbs"), ".png", ""));
96                 o->out_size = _film->size ();
97                 o->apply_crop = false;
98                 o->decode_audio = false;
99                 if (_film->length() > 0) {
100                         o->decode_video_skip = _film->length().get() / 128;
101                 } else {
102                         o->decode_video_skip = 0;
103                 }
104                 o->decode_subtitles = true;
105                 shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (_film, o));
106                 Transcoder w (_film, o, this, e);
107                 w.go ();
108                 
109         } catch (std::exception& e) {
110
111                 ascend ();
112                 set_progress (1);
113                 set_error (e.what ());
114                 set_state (FINISHED_ERROR);
115                 return;
116                 
117         }
118
119         string const tdir = _film->dir ("thumbs");
120         vector<SourceFrame> thumbs;
121
122         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (tdir); i != boost::filesystem::directory_iterator(); ++i) {
123
124                 /* Aah, the sweet smell of progress */
125 #if BOOST_FILESYSTEM_VERSION == 3               
126                 string const l = boost::filesystem::path(*i).leaf().generic_string();
127 #else
128                 string const l = i->leaf ();
129 #endif
130                 
131                 size_t const d = l.find (".png");
132                 size_t const t = l.find (".tmp");
133                 if (d != string::npos && t == string::npos) {
134                         thumbs.push_back (atoi (l.substr (0, d).c_str()));
135                 }
136         }
137
138         sort (thumbs.begin(), thumbs.end());
139         _film->set_thumbs (thumbs);     
140
141         ascend ();
142         set_progress (1);
143         set_state (FINISHED_OK);
144 }