Python VLC - MediaListPlayer Last Updated : 29 Aug, 2020 Comments Improve Suggest changes Like Article Like Report In this article we will see how we can create a MediaListPlayer class object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. Media list player is used to play multiple media in a row for example playing a series, instead of taking single media it accepts media list. Its working is almost similar like the MediaPlayer object but it is capable of playing list of media. In order to do this we will use mediaListPlayer method Syntax : vlc.mediaListPlayer() Argument : It takes no argument Return : It returns MediaListPlayer object Below is the implementation Python3 # importing vlc module import vlc # importing time module import time # creating a media player object media_player = vlc.MediaListPlayer() # creating Instance class object player = vlc.Instance() # creating a new media list media_list = player.media_list_new() # creating a new media media = player.media_new("death_note.mkv") # adding media to media list media_list.add_media(media) # setting media list to the media player media_player.set_media_list(media_list) # start playing video media_player.play() Output : Another example Below is the implementation Python3 # importing vlc module import vlc # importing time module import time # creating a media player object media_player = vlc.MediaListPlayer() # creating Instance class object player = vlc.Instance() # creating a new media list media_list = player.media_list_new() # creating a new media media = player.media_new("1.mp4") # adding media to media list media_list.add_media(media) # setting media list to the media player media_player.set_media_list(media_list) # start playing video media_player.play() Output : Comment More infoAdvertise with us Next Article Python VLC - MediaListPlayer R rakshitarora Follow Improve Article Tags : Python Python vlc-mediaPlayer Practice Tags : python Similar Reads Python VLC - MediaList In this article we will see how we can create a MediaList object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. MediaList object contains the multiple media, in other wor 2 min read Python VLC MediaListPlayer - Playing Item In this article we will see how we can play the given item in the MediaListPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. Media list player is used to play 2 min read Python VLC MediaListPlayer - Pause/Resume In this article we will see how we can pause/resume the MediaListPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. Media list player is used to play multiple m 2 min read Python VLC MediaPlayer - Pausing it In this article we will see how we can pause the media in the MediaPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. MediaPlayer object is the basic object in 2 min read Python VLC MediaListPlayer - Currently Playing In this article we will see how we can check if the media is playing or not in the MediaListPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. Media list player 2 min read Python VLC MediaListPlayer - Playing Next Item In this article we will see how we can play the next item in the MediaListPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. Media list player is used to play m 3 min read Python VLC MediaPlayer - Getting FPS In this article we will see how we can get the fps i.e frame rate per second in the MediaPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. MediaPlayer object i 2 min read Python VLC - Instance In this article we will see how we can create a Instance class instance in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. Instance act as a main object of the VLC library wi 2 min read Python VLC MediaPlayer â Setting Track In this article we will see how we can set track of the MediaPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. MediPlyer object is the basic object in vlc modu 2 min read Python VLC MediaPlayer â Setting Scale In this article we will see how we can set scale to the MediaPlayer object in the python vlc module. VLC media player is a free and open-source portable cross-platform media player software and streaming media server developed by the VideoLAN project. MediPlyer object is the basic object in vlc modu 2 min read Like