Python VLC MediaPlayer – Enabling Keyboard Input Last Updated : 16 Dec, 2021 Comments Improve Suggest changes Like Article Like Report In this article, we will see how we can enable keyboard input handling 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 vlc module for playing the video. By keyboard handling one can create event handler and can take keyboard input to do actions. In order to do this we will use video_set_key_input method with the MediaPlayer objectSyntax : media_player.video_set_key_input(True)Argument : It takes bool as argumentReturn : 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() # media object media = vlc.Media("death_note.mkv") # setting media to the media player media_player.set_media(media) # making keyboard input enable media_player.video_set_key_input(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) 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) # making keyboard input enable media_player.video_set_key_input(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) Output : Comment More infoAdvertise with us Next Article Python VLC MediaPlayer – Enabling Keyboard Input R rakshitarora Follow Improve Article Tags : Python Python vlc-library Practice Tags : python Similar Reads Python VLC MediaPlayer â Enabling Mouse Input Handling In this article we will see how we can enable mouse input handling 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 obj 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 - Creating MediaListPlayer Instance In this article we will see how we can create a MediaListPlayer 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 obj 2 min read Python VLC MediaPlayer â Getting Media Role In this article we will see how we can get role 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 modul 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 Like