import pyglet
from time import sleep
player = pyglet.media.Player()
Music_Path ="C:\\file.mp3"
file = pyglet.media.load(Music_Path)
player.queue(file)
player.play()
sleep(5)
player.on_eos() # ВОТ ФУНКЦИЯ ДЛЯ ВОСПРОИЗВЕДЕНИЯ СЛЕДУЮЩИХ ФАЙЛОВ(но точнее я её так использовал)
Music_Path2 ="C:\\file2.mp3"
file2 = pyglet.media.load(Music_Path2)
player.queue(file2)
player.play()
sleep(6)