コード例 #1
0
 def Previous(self):
     QUEUE.prev()
コード例 #2
0
 def Play(self):
     QUEUE.play()
コード例 #3
0
 def PlayPause(self):
     if PLAYER.is_stopped():
         QUEUE.play()
     else:
         PLAYER.toggle_pause()
コード例 #4
0
 def Next(self):
     QUEUE.next()