From 1245a8bb685504f11733380077a564a783348433 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 25 Sep 2018 22:06:42 +0100 Subject: [PATCH] Add frame rate to technical summary of content. --- src/lib/content.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/content.cc b/src/lib/content.cc index c2cb7e005..3ab4a5959 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -295,7 +295,11 @@ Content::clone () const string Content::technical_summary () const { - return String::compose ("%1 %2 %3", path_summary(), digest(), position().seconds()); + string s = String::compose ("%1 %2 %3", path_summary(), digest(), position().seconds()); + if (_video_frame_rate) { + s += String::compose(" %1", *_video_frame_rate); + } + return s; } DCPTime -- 2.30.2