Please, how to set vlc media player to work in Python.I know it has a python-vlc module ,But to have all the settings in python not just calling to the path for vlc Thanks, -------------- next part -------------- playlist = ['/path/to/song1.flac', '/path/to/song2.flac', 'path/to/song3.flac'] for song in playlist: player = vlc.MediaPlayer(song) player.play()