Ejemplo n.º 1
0
 def Previous(self):
     QUEUE.prev()
Ejemplo n.º 2
0
 def Play(self):
     QUEUE.play()
Ejemplo n.º 3
0
 def PlayPause(self):
     if PLAYER.is_stopped():
         QUEUE.play()
     else:
         PLAYER.toggle_pause()
Ejemplo n.º 4
0
 def Next(self):
     QUEUE.next()