More various bits.
[dcpomatic.git] / src / lib / transcode_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/transcode_job.cc
21  *  @brief A job which transcodes from one format to another.
22  */
23
24 #include <iostream>
25 #include <iomanip>
26 #include "transcode_job.h"
27 #include "film.h"
28 #include "format.h"
29 #include "transcoder.h"
30 #include "log.h"
31 #include "encoder.h"
32
33 #include "i18n.h"
34
35 using std::string;
36 using std::stringstream;
37 using std::fixed;
38 using std::setprecision;
39 using boost::shared_ptr;
40
41 /** @param s Film to use.
42  */
43 TranscodeJob::TranscodeJob (shared_ptr<Film> f)
44         : Job (f)
45 {
46         
47 }
48
49 string
50 TranscodeJob::name () const
51 {
52         return String::compose (_("Transcode %1"), _film->name());
53 }
54
55 void
56 TranscodeJob::run ()
57 {
58         try {
59
60                 _film->log()->log (N_("Transcode job starting"));
61                 _film->log()->log (String::compose (N_("Audio delay is %1ms"), _film->audio_delay()));
62
63                 _transcoder.reset (new Transcoder (_film, shared_from_this ()));
64                 _transcoder->go ();
65                 set_progress (1);
66                 set_state (FINISHED_OK);
67
68                 _film->log()->log (N_("Transcode job completed successfully"));
69
70         } catch (std::exception& e) {
71
72                 set_progress (1);
73                 set_state (FINISHED_ERROR);
74                 _film->log()->log (String::compose (N_("Transcode job failed (%1)"), e.what()));
75
76                 throw;
77         }
78 }
79
80 string
81 TranscodeJob::status () const
82 {
83         if (!_transcoder) {
84                 return _("0%");
85         }
86
87         float const fps = _transcoder->current_encoding_rate ();
88         if (fps == 0) {
89                 return Job::status ();
90         }
91
92         stringstream s;
93
94         s << Job::status ();
95
96         if (!finished ()) {
97                 s << N_("; ") << fixed << setprecision (1) << fps << N_(" ") << _("frames per second");
98         }
99         
100         return s.str ();
101 }
102
103 int
104 TranscodeJob::remaining_time () const
105 {
106         if (!_transcoder) {
107                 return 0;
108         }
109         
110         float fps = _transcoder->current_encoding_rate ();
111
112         if (fps == 0) {
113                 return 0;
114         }
115
116         if (!_film->video_length()) {
117                 return 0;
118         }
119
120         /* Compute approximate proposed length here, as it's only here that we need it */
121         int length = _film->video_length();
122         FrameRateConversion const frc (_film->video_frame_rate(), _film->dcp_frame_rate());
123         if (frc.skip) {
124                 length /= 2;
125         }
126         /* If we are repeating it shouldn't affect transcode time, so don't take it into account */
127
128         int const left = length - _transcoder->video_frames_out();
129         return left / fps;
130 }