mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-18 15:25:09 +00:00
Fix context transcode
This commit is contained in:
parent
f6ffd31e2d
commit
ae51eabb41
3 changed files with 7 additions and 2 deletions
|
@ -190,6 +190,11 @@ class PlayUtils(object):
|
|||
source['SupportsDirectPlay'] = False
|
||||
source['Protocol'] = "LiveTV"
|
||||
|
||||
if self.info['ForceTranscode']:
|
||||
|
||||
source['SupportsDirectPlay'] = False
|
||||
source['SupportsDirectStream'] = False
|
||||
|
||||
if source.get('Protocol') == 'Http' or source['SupportsDirectPlay'] and (self.is_strm(source) or not settings('playFromStream.bool') and self.is_file_exists(source)):
|
||||
|
||||
LOG.info("--[ direct play ]")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue