Quick follow up

Including additional logging.
This commit is contained in:
angelblue05 2015-07-23 04:02:41 -05:00
parent 4a6c5c10ac
commit 9d866f9fc9
1 changed files with 3 additions and 1 deletions

View File

@ -158,10 +158,12 @@ class PlayUtils():
location = result[u'LocationType']
# File can be FileSystem or Remote, not Virtual
if u'Virtual' in location:
self.logMsg("File location is virtual. Can't proceed.", 1)
return False
# Verify BitRate
if not self.isNetworkQualitySufficient(result):
self.logMsg("The network speed is insufficient to playback the file.", 1)
return False
return True
@ -318,7 +320,7 @@ class PlayUtils():
def audioSubsPref(self, mediaSources):
addon = xbmcaddon.Addon(id=self.addonId)
addon = xbmcaddon.Addon()
defaultAudio = mediaSources[0][u'DefaultAudioStreamIndex']
playurlprefs = "&AudioStreamIndex=%s" % defaultAudio