예제 #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()