Loop over a list containing path to sound files

I think it’s because play() method does not bloc your code, so your code will continue once you have lauched the music. Therefore, you will start to play the first music and immediately after, you will launch the second one. You end up skipping all the musics, and only playing the last one.

Leave a Comment