diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-12-12 21:26:42 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-12-12 21:26:42 +0000 |
| commit | 4cb3f4a5cc5712f3a829f9a217f6554bbc875256 (patch) | |
| tree | d6939d82285e81b950d104ec75147368d7b8aa8e | |
| parent | 201b6fdf572c04424d870ac4d07d1d1a8725b24c (diff) | |
Add duration as H:M:S:F.
| -rw-r--r-- | tools/dcpinfo.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/dcpinfo.cc b/tools/dcpinfo.cc index 92f12a3c..d0edbd3b 100644 --- a/tools/dcpinfo.cc +++ b/tools/dcpinfo.cc @@ -98,6 +98,7 @@ main_picture (shared_ptr<Reel> reel, bool analyse, bool decompress) cout << " Picture ID: " << reel->main_picture()->id() << " entry " << reel->main_picture()->entry_point() << " duration " << reel->main_picture()->duration() + << " (" << dcp::Time(reel->main_picture()->duration(), reel->main_picture()->frame_rate().as_float(), reel->main_picture()->frame_rate().as_float()).as_string(dcp::SMPTE) << ")" << " intrinsic " << reel->main_picture()->intrinsic_duration(); if (reel->main_picture()->asset_ref().resolved()) { |
