mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-27 07:10:43 +00:00
Pass HDR library metadata to kodi to display logos
Fix indentation error Update actions.py Update api.py
This commit is contained in:
parent
1caa69f831
commit
98a7ace541
@ -73,7 +73,20 @@ class API(object):
|
||||
|
||||
for track in tracks:
|
||||
|
||||
if "DvProfile" in track:
|
||||
track['hdrtype'] = "dolbyvision"
|
||||
|
||||
elif track['VideoRangeType'] in ["HDR10", "HDR10Plus"]:
|
||||
track['hdrtype'] = "hdr10"
|
||||
|
||||
elif "HLG" in track['VideoRangeType']:
|
||||
track['hdrtype'] = "hlg"
|
||||
|
||||
elif track['VideoRangeType'] in ["SDR", "Unknown"]:
|
||||
track['hdrtype'] = ""
|
||||
|
||||
track.update({
|
||||
'hdrtype': track.get('hdrtype', "").lower(),
|
||||
'codec': track.get('Codec', "").lower(),
|
||||
'profile': track.get('Profile', "").lower(),
|
||||
'height': track.get('Height'),
|
||||
|
@ -455,6 +455,7 @@ class Actions(object):
|
||||
|
||||
for track in obj['Streams']['video']:
|
||||
listitem.addStreamInfo('video', {
|
||||
'hdrtype': track['hdrtype'],
|
||||
'duration': obj['Runtime'],
|
||||
'aspect': track['aspect'],
|
||||
'codec': track['codec'],
|
||||
|
@ -258,10 +258,10 @@ add_bookmark_obj = ["{FileId}", "{PlayCount}", "{DatePlayed}", "{Resume}", "{Run
|
||||
add_streams_obj = ["{FileId}", "{Streams}", "{Runtime}"]
|
||||
add_stream_video = """
|
||||
INSERT INTO streamdetails(idFile, iStreamType, strVideoCodec, fVideoAspect, iVideoWidth,
|
||||
iVideoHeight, iVideoDuration, strStereoMode)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?)
|
||||
iVideoHeight, iVideoDuration, strStereoMode, strHdrType)
|
||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
|
||||
"""
|
||||
add_stream_video_obj = ["{FileId}", 0, "{codec}", "{aspect}", "{width}", "{height}", "{Runtime}", "{3d}"]
|
||||
add_stream_video_obj = ["{FileId}", 0, "{codec}", "{aspect}", "{width}", "{height}", "{Runtime}", "{3d}", "{hdrtype}"]
|
||||
add_stream_audio = """
|
||||
INSERT INTO streamdetails(idFile, iStreamType, strAudioCodec, iAudioChannels, strAudioLanguage)
|
||||
VALUES (?, ?, ?, ?, ?)
|
||||
|
Loading…
Reference in New Issue
Block a user