X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=hacks%2Ffilmsum;h=bda8740c3667797f0091ca263bbd816b4284f521;hb=c0264efd6f273fa2d4ed8126b2ea673f31d7d539;hp=dae0699d151f125f66dabcf310b0e9fa58c67fef;hpb=2983479f9e579e8d6ec6cb33226efd7a0f97ec2a;p=dcpomatic.git diff --git a/hacks/filmsum b/hacks/filmsum index dae0699d1..bda8740c3 100755 --- a/hacks/filmsum +++ b/hacks/filmsum @@ -63,9 +63,11 @@ for c in soup.Metadata.Playlist.children: print() note(' Type', c.Type.text) note(' Position', dcp_time(c.Position)) - note(' Video rate', c.VideoFrameRate.text) - note(' Video length', content_time_from_frames(c.VideoLength, float(c.VideoFrameRate.text))) - note(' Audio rate', c.AudioFrameRate.text) + if c.VideoFrameRate: + note(' Video rate', c.VideoFrameRate.text) + note(' Video length', content_time_from_frames(c.VideoLength, float(c.VideoFrameRate.text))) + if c.AudioFrameRate: + note(' Audio rate', c.AudioFrameRate.text) bool_note(' Reference video', c.ReferenceVideo, lambda x: not x) bool_note(' Reference audio', c.ReferenceAudio, lambda x: not x) bool_note(' Reference subtitle', c.ReferenceSubtitle, lambda x: not x)