mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-26 02:36:10 +00:00
Merge pull request #853 from oddstr13/fix-849-1
Gracefully handle missing VideoRangeType in stream tracks
This commit is contained in:
commit
b585377476
1 changed files with 2 additions and 7 deletions
|
@ -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(),
|
||||
|
|
Loading…
Reference in a new issue