PyQT5 media player from playlist

2.3k Views Asked by At

I've some problems making this work. I wanna use playlist to play audio files. here is my code:

playlist = QMediaPlaylist()
url = QUrl.fromLocalFile("/home/user/Downloads/ss.mp3")
playlist.addMedia(QMediaContent(url))


player.setPlaylist(playlist)
player.playlist().setCurrentIndex(0)
player.play()

The problem is that when I feed the file as unique media source (player.serMedia()) it works, but when I run the code above, the music doesn't play!

What's the problem here?

2

There are 2 best solutions below

2
On

The answer after searching in qt forums is that I didn't provide the player object when creating the playlist.

        playlist = QMediaPlaylist(player)
2
On

'''how to work it like a playlist add songs to playlist as much as we want and on click automatically play directly from playlist ''' def open_dialog_box_for_playlist(self): filename = QFileDialog.getOpenFileName() path = str(filename[0]) playlist = QMediaPlaylist(self.media_player) url = QUrl.fromLocalFile(path) playlist.addMedia(QMediaContent(url)) song__playlist= str(playlist) print("songlist is ",type(song__playlist)) self.media_player.setPlaylist(playlist) self.media_player.playlist().setCurrentIndex(0) self.media_player.play() print("this is playlist ::::",playlist)

    model = QtGui.QStandardItemModel()
    self.listView.setModel(model)
    for i in song__playlist:
        item = QtGui.QStandardItem(i)
        model.appendRow(item)