Python VLC Instance - Setting Application Name Last Updated : 29 Aug, 2020 Comments Improve Suggest changes Like Article Like Report In this article we will see how we can set the application name from the Instance class 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 with the Instance object we can create media player, list player or any other player available in VLC. Instance class the base classed used in VLC to create various objects. LibVLC passes name as the user agent string when a protocol requires it. In order to do this we will use set_user_agent method with the Instance object Syntax : instance.set_user_agent(name, http) Argument : It takes name and http agent as argument Return : It returns None Below is the implementation Python3 # importing vlc module import vlc # importing time module import time # creating Instance class object player = vlc.Instance() # setting application name player.set_user_agent("GFG", "GFG / Python / 3.6") # creating a new media list media_list = player.media_list_new() # creating a media player object media_player = player.media_list_player_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 mediaplayer 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 Below is the implementation Python3 # importing vlc module import vlc # importing time module import time # creating Instance class object player = vlc.Instance() # setting application name player.set_user_agent("GFG-2", "GFG-2 / Python / 3.6") # creating a new media list media_list = player.media_list_new() # creating a media player object media_player = player.media_list_player_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 mediaplayer 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 : Comment More infoAdvertise with us Next Article Python VLC Instance - Setting Application Name R rakshitarora Follow Improve Article Tags : Python Python vlc-library Practice Tags : python Similar Reads Python VLC Instance - Setting Meta Data of Application In this article we will see how we can set the meta information of the application from the Instance class 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 2 min read Python VLC Instance â Deleting Single Media In this article we will see how we can delete the single media from the Instance class 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 2 min read Python VLC Instance - Unsetting Logging Callbacks In this article we will see how we can unset the logging callbacks from the Instance class 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 2 min read Python VLC Instance - Creating Media path In this article we will see how we can create a media path from the Instance class 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 2 min read Python VLC Instance â Setting Loop on the media In this article we will see how we can set loop on the single media from the Instance class 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 o 2 min read Python VLC Instance â Enabling Media/Broadcast In this article we will see how we can enable or disable the single media from the Instance class 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 ob 2 min read Python VLC Instance - Creating new Media Instance In this article we will see how we can create a Media instance from the Instance class 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 2 min read Python VLC Instance - Creating MediaList Instance In this article we will see how we can create a MediaList Instance from the Instance class 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 2 min read Python VLC Instance - Creating MediaPlayer Instance In this article we will see how we can create a MediaPlayer instance from the Instance class 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 2 min read Python VLC Instance â Play the specific Media/Broadcast In this article we will see how we can play specific media from the Instance class 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 2 min read Like