Comment.
[dcpomatic.git] / src / lib / transcode_job.cc
index eb1991297dbd8b1659fe40ba8943b26f74c6fd6f..f10078f3c2714984b15035d45b679954399f9c72 100644 (file)
@@ -100,7 +100,9 @@ TranscodeJob::status () const
 
        if (!finished () && !_transcoder->finishing ()) {
                /// TRANSLATORS: fps here is an abbreviation for frames per second
-               s << "; " << fixed << setprecision (1) << fps << " " << _("fps");
+               s << "; " << _transcoder->video_frames_out() << "/"
+                 << _film->length().frames_round (_film->video_frame_rate ()) << " " << _("frames") << "; "
+                 << fixed << setprecision (1) << fps << " " << _("fps");
        }
 
        return s.str ();