mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
H265 rectification
This commit is contained in:
parent
8e2cae3b13
commit
b9ba092e12
2 changed files with 9 additions and 9 deletions
|
@ -91,10 +91,10 @@ class PlayUtils():
|
||||||
self.logMsg("Can't direct play, play from HTTP enabled.", 1)
|
self.logMsg("Can't direct play, play from HTTP enabled.", 1)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if (utils.settings('transcodeHEVC') == "true" and
|
if (utils.settings('transcodeH265') == "true" and
|
||||||
item['MediaSources'][0]['Name'].startswith("1080P/HEVC")):
|
item['MediaSources'][0]['Name'].startswith(("1080P/HEVC","1080P/H265"))):
|
||||||
# Avoid HEVC(H265) 1080p
|
# Avoid H265 1080p
|
||||||
self.logMsg("Option to transcode 1080P/HEVC enabled.", 1)
|
self.logMsg("Option to transcode 1080P/H265 enabled.", 1)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
canDirectPlay = item['MediaSources'][0]['SupportsDirectPlay']
|
canDirectPlay = item['MediaSources'][0]['SupportsDirectPlay']
|
||||||
|
@ -191,10 +191,10 @@ class PlayUtils():
|
||||||
|
|
||||||
item = self.item
|
item = self.item
|
||||||
|
|
||||||
if (utils.settings('transcodeHEVC') == "true" and
|
if (utils.settings('transcodeH265') == "true" and
|
||||||
item['MediaSources'][0]['Name'].startswith("1080P/HEVC")):
|
item['MediaSources'][0]['Name'].startswith(("1080P/HEVC","1080P/H265"))):
|
||||||
# Avoid HEVC(H265) 1080p
|
# Avoid H265 1080p
|
||||||
self.logMsg("Option to transcode 1080P/HEVC enabled.", 1)
|
self.logMsg("Option to transcode 1080P/H265 enabled.", 1)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Requirement: BitRate, supported encoding
|
# Requirement: BitRate, supported encoding
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
<setting id="resumeJumpBack" type="slider" label="On Resume Jump Back Seconds" default="10" range="0,1,120" option="int" />
|
<setting id="resumeJumpBack" type="slider" label="On Resume Jump Back Seconds" default="10" range="0,1,120" option="int" />
|
||||||
<setting id="playFromStream" type="bool" label="30002" default="false" />
|
<setting id="playFromStream" type="bool" label="30002" default="false" />
|
||||||
<setting id="videoBitrate" type="enum" label="30160" values="664 Kbps SD|996 Kbps HD|1.3 Mbps HD|2.0 Mbps HD|3.2 Mbps HD|4.7 Mbps HD|6.2 Mbps HD|7.7 Mbps HD|9.2 Mbps HD|10.7 Mbps HD|12.2 Mbps HD|13.7 Mbps HD|15.2 Mbps HD|16.7 Mbps HD|18.2 Mbps HD|20.0 Mbps HD|40.0 Mbps HD|100.0 Mbps HD [default]|1000.0 Mbps HD" visible="eq(-1,true)" default="17" />
|
<setting id="videoBitrate" type="enum" label="30160" values="664 Kbps SD|996 Kbps HD|1.3 Mbps HD|2.0 Mbps HD|3.2 Mbps HD|4.7 Mbps HD|6.2 Mbps HD|7.7 Mbps HD|9.2 Mbps HD|10.7 Mbps HD|12.2 Mbps HD|13.7 Mbps HD|15.2 Mbps HD|16.7 Mbps HD|18.2 Mbps HD|20.0 Mbps HD|40.0 Mbps HD|100.0 Mbps HD [default]|1000.0 Mbps HD" visible="eq(-1,true)" default="17" />
|
||||||
<setting id="transcodeHEVC" type="bool" label="Force transcode 1080p/HEVC" default="false" />
|
<setting id="transcodeH265" type="bool" label="Force transcode 1080p/H265" default="false" />
|
||||||
<setting id="markPlayed" type="number" visible="false" default="90" />
|
<setting id="markPlayed" type="number" visible="false" default="90" />
|
||||||
<setting id="failedCount" type="number" visible="false" default="0" />
|
<setting id="failedCount" type="number" visible="false" default="0" />
|
||||||
<setting id="networkCreds" type="text" visible="false" default="" />
|
<setting id="networkCreds" type="text" visible="false" default="" />
|
||||||
|
|
Loading…
Reference in a new issue