mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Improve network quality logging
This commit is contained in:
parent
e0b51cd437
commit
1660a29e68
1 changed files with 7 additions and 6 deletions
|
@ -227,12 +227,13 @@ class PlayUtils():
|
|||
try:
|
||||
mediaSources = result[u'MediaSources']
|
||||
sourceBitRate = int(mediaSources[0][u'Bitrate'])
|
||||
self.logMsg("The video quality selected is: %s, the video bitrate required to direct stream is: %s." % (settingsVideoBitRate, sourceBitRate), 1)
|
||||
if settingsVideoBitRate > sourceBitRate:
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
except:
|
||||
self.logMsg("Bitrate value is missing.")
|
||||
else:
|
||||
self.logMsg("The video quality selected is: %s, the video bitrate required to direct stream is: %s." % (settingsVideoBitRate, sourceBitRate), 1)
|
||||
if settingsVideoBitRate < sourceBitRate:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def getVideoBitRate(self):
|
||||
|
|
Loading…
Reference in a new issue