on your addon you are using the custom X-Limit-Video header on license response to apply the HDCP resolution limit
|
self.send_header('X-Limit-Video', |
|
'max={0}px'.format(size_limit)) |
from the next ISA version of Kodi v22 (at the time im writing not released yet)
to enable this feature you have to set check_hdcp parameter to LICENSE
it will no longer be enabled by default since its a provider customization
wiki: https://github.com/xbmc/inputstream.adaptive/wiki/Integration#inputstreamadaptiveconfig-
ref. PR: xbmc/inputstream.adaptive#2037
example
listitem.setProperty('inputstream.adaptive.config', '{"check_hdcp": "license"}')
on your addon you are using the custom
X-Limit-Videoheader on license response to apply the HDCP resolution limitplugin.video.youtube/resources/lib/youtube_plugin/kodion/network/http_server.py
Lines 773 to 774 in 94cd361
from the next ISA version of Kodi v22 (at the time im writing not released yet)
to enable this feature you have to set
check_hdcpparameter to LICENSEit will no longer be enabled by default since its a provider customization
wiki: https://github.com/xbmc/inputstream.adaptive/wiki/Integration#inputstreamadaptiveconfig-
ref. PR: xbmc/inputstream.adaptive#2037
example
listitem.setProperty('inputstream.adaptive.config', '{"check_hdcp": "license"}')