Python VLC MediaList – Removing Media from specific index
In this article we will see how we can remove the specific media through index in the 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 words it has list of media which can be used with MediaListPlayer object to play these multiple media object. Inserting means we can add media at given index, it can be inserted with the help of insert_media
method and we can add media to media list with the help of add_media
method.
In order to do this we will use
remove_media
method with the MediaList objectSyntax : media_list.remove_media(index)
Argument : It takes index as argument
Return : It returns 0 on success, -1 if the media list is read-only
Below is the implementation
# 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 media list object media_list = vlc.MediaList() # creating a new media media = player.media_new( "death_note.mkv" ) # adding media to media list media_list.add_media(media) # creating a new media media = player.media_new( "1.mp4" ) # inserting media to media list at index 0 media_list.insert_media(media, 0 ) # removing media at index 0 media_list.remove_index( 0 ) # setting media list to the media player media_player.set_media_list(media_list) # start playing video media_player.play() # wait so the video can be played for 5 seconds # irrespective for length of video time.sleep( 5 ) |
Output :
Another example
# 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 media list object media_list = vlc.MediaList() # creating a new media media = player.media_new( "1.mp4" ) # adding media to media list media_list.add_media(media) # creating a new media media = player.media_new( "death_note.mkv" ) # inserting media to media list at index 0 media_list.insert_media(media, 0 ) # removing media at index 0 media_list.remove_index( 0 ) # setting media list to the media player media_player.set_media_list(media_list) # start playing video media_player.play() # wait so the video can be played for 5 seconds # irrespective for length of video time.sleep( 5 ) |
Output :
Please Login to comment...