summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/video_content.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc
index cef543387..9ffc63c5d 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -403,6 +403,16 @@ VideoContent::processing_description () const
d << " (" << fixed << setprecision(2) << container_size.ratio () << ":1)\n";
}
+ if (_parent->video_frame_rate()) {
+ double const vfr = _parent->video_frame_rate().get ();
+
+ d << _("Content frame rate");
+ d << " " << fixed << setprecision(4) << vfr << "\n";
+
+ FrameRateChange frc (vfr, film->video_frame_rate ());
+ d << frc.description () << "\n";
+ }
+
return d.str ();
}