Python VLC MediaPlayer – Setting Full Screen Status Last Updated : 18 Aug, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article we will see how we can set full screen status 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 module for playing the video. We can create a MediaPlayer object with the help of MediaPlayer method. Enabling full screen status make it full screen it is similar to toggling full screen but with this status we can undo the full screen. In order to do this we will use set_fullscreen method with the MediaPlayer object Syntax : media_player.set_fullscreen(True) Argument : It takes bool as argument Return : It returns None Below is the implementation Python3 # importing vlc module import vlc # importing time module import time # creating vlc media player object media_player = vlc.MediaPlayer() # setting full screen status media_player.media_player.set_fullscreen(True) # media object media = vlc.Media("death_note.mkv") # setting media to the media player media_player.set_media(media) # 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 vlc media player object media_player = vlc.MediaPlayer() # media object media = vlc.Media("1mp4.mkv") # setting media to the media player media_player.set_media(media) # setting full screen status media_player.media_player.set_fullscreen(True) # start playing video media_player.play() # wait so the video can be played for 5 seconds # irrespective for length of video time.sleep(5) Comment More infoAdvertise with us Next Article Python VLC MediaPlayer – Setting Full Screen Status R rakshitarora Follow Improve Article Tags : Python Python vlc-library Practice Tags : python Similar Reads Python VLC MediaPlayer - Toggling Full Screen In this article we will see how we can toggle full screen 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. MediaPlayer object is the basic object 2 min read Python VLC MediaPlayer â Getting Full Screen Status In this article we will see how we can get full screen status 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 objec 2 min read Python VLC MediaPlayer â Setting Mute Status In this article we will see how we can set the mute status 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. MediaPlayer object is the basic object 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 Python VLC MediaPlayer â Taking Screenshot In this article we will see how we can take screen shot 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 v 2 min read Like