mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
hevc transcode - direct stream skip
This commit is contained in:
parent
86caf21af4
commit
2e4e983acd
1 changed files with 4 additions and 4 deletions
|
@ -191,10 +191,10 @@ class PlayUtils():
|
||||||
|
|
||||||
item = self.item
|
item = self.item
|
||||||
|
|
||||||
if (utils.settings('transcodeH265') == "true" and
|
if (utils.settings('transcodeHEVC') == "true" and
|
||||||
item['MediaSources'][0]['Name'].startswith("1080P/H265")):
|
item['MediaSources'][0]['Name'].startswith("1080P/HEVC")):
|
||||||
# Avoid H265 1080p
|
# Avoid HEVC(H265) 1080p
|
||||||
self.logMsg("Option to transcode 1080P/H265 enabled.", 1)
|
self.logMsg("Option to transcode 1080P/HEVC enabled.", 1)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Requirement: BitRate, supported encoding
|
# Requirement: BitRate, supported encoding
|
||||||
|
|
Loading…
Reference in a new issue