Prep for audiobook transcode

Still need to implement universal for audio transcode
This commit is contained in:
angelblue05 2018-10-07 18:20:47 -05:00
parent 69395b0e80
commit d893996cf4

View file

@ -229,6 +229,8 @@ class PlayUtils(object):
raise Exception("use get_sources to get transcoding url")
self.info['Method'] = "Transcode"
if self.item['MediaType'] == 'Video':
base, params = source['TranscodingUrl'].split('?')
if settings('skipDialogTranscode') != "3" and source.get('MediaStreams'):
@ -243,6 +245,8 @@ class PlayUtils(object):
video_type = 'live' if source.get('LiveStreamId') else 'master'
self.info['Path'] = "%s/emby%s?%s" % (self.info['ServerAddress'], base.replace('stream', video_type), params)
self.info['Path'] += "&maxWidth=%s&maxHeight=%s" % (self.get_resolution())
else:
self.info['Path'] = "%s/emby%s" % (self.info['ServerAddress'], source['TranscodingUrl'])
return self.info['Path']
@ -430,7 +434,6 @@ class PlayUtils(object):
"BreakOnNonKeyFrames": True
})
return profile
def set_external_subs(self, source, listitem):