def onPlayBackStarted(self):
'''Kodi event fired when playback is started (including next tracks)'''
# set the connect_playing bool to indicate we are playing spotify connect content
self.__is_paused = False
filename = ""
while not filename:
try:
filename = self.getPlayingFile()
except:
xbmc.sleep(500)
if "localhost:%s" % PROXY_PORT in filename:
if not self.connect_playing and "connect=true" in filename:
# we started playback with (remote) connect player
log_msg("Playback started of Spotify Connect stream")
self.connect_playing = True
if "silence" in filename:
self.connect_local = False
else:
self.connect_local = True
if "nexttrack" in filename:
# next track requested for kodi player
self.__sp.next_track()
elif self.connect_playing:
self.update_playlist()
player_monitor.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录