Merge pull request #853 from oddstr13/fix-849-1

Gracefully handle missing VideoRangeType in stream tracks
This commit is contained in:
mcarlton00 2024-04-09 08:36:57 -04:00 committed by GitHub
commit b585377476
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 7 deletions

View File

@ -75,16 +75,11 @@ class API(object):
if "DvProfile" in track:
track['hdrtype'] = "dolbyvision"
elif track['VideoRangeType'] in ["HDR10", "HDR10Plus"]:
elif track.get('VideoRangeType', '') in ["HDR10", "HDR10Plus"]:
track['hdrtype'] = "hdr10"
elif "HLG" in track['VideoRangeType']:
elif "HLG" in track.get('VideoRangeType', ''):
track['hdrtype'] = "hlg"
elif track['VideoRangeType'] in ["SDR", "Unknown"]:
track['hdrtype'] = ""
track.update({
'hdrtype': track.get('hdrtype', "").lower(),
'codec': track.get('Codec', "").lower(),