Fix extracted subtitle delivery for transcodes

This commit is contained in:
BEN ENGLISCH 2020-09-17 09:09:21 -05:00
parent b66a838778
commit 60ea47630b
1 changed files with 2 additions and 7 deletions

View File

@ -468,13 +468,8 @@ class PlayUtils(object):
kodi = 0 kodi = 0
for stream in source['MediaStreams']: for stream in source['MediaStreams']:
if stream['Type'] == 'Subtitle' and stream['DeliveryMethod'] == 'External':
if stream['Type'] == 'Subtitle' and stream['IsExternal']:
index = stream['Index'] index = stream['Index']
if 'DeliveryUrl' in stream and stream['DeliveryUrl'].lower().startswith('/videos'):
url = "%s/%s" % (self.info['ServerAddress'], stream['DeliveryUrl'])
else:
url = self.get_subtitles(source, stream, index) url = self.get_subtitles(source, stream, index)
if url is None: if url is None: