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 in vlc module for playing the video. If status is true then mute, otherwise unmute @warning This function does not always work. If there are no active audio playback stream, the mute status might not be available. If digital pass-through (S/PDIF, HDMI…) is in use, muting may be unapplicable. Also some audio output plugins do not support muting at all. @note To force silent playback, disable all audio tracks. This is more efficient and reliable than mute.
In order to do this we will use audio_set_mute method with the MediaPlayer object
Syntax : media_player.audio_set_mute(True)
Argument : It takes bool as argument
Return : It returns a None
Below is the implementation
Python3
# importing vlc moduleimport vlc# importing time moduleimport time# creating vlc media player objectmedia_player = vlc.MediaPlayer()# media objectmedia = vlc.Media("death_note.mkv")# setting media to the media playermedia_player.set_media(media)# making mute status Truemedia_player.audio_set_mute(True)# setting video scalemedia_player.video_set_scale(0.6)# start playing videomedia_player.play()# wait so the video can be played for 5 seconds# irrespective for length of videotime.sleep(5) |
Output : 
Python3
# importing vlc moduleimport vlc# importing time moduleimport time# creating vlc media player objectmedia_player = vlc.MediaPlayer()# media objectmedia = vlc.Media("1mp4.mkv")# setting media to the media playermedia_player.set_media(media)# setting video scalemedia_player.video_set_scale(0.6)# making mute status Truemedia_player.audio_set_mute(True)# start playing videomedia_player.play()# wait so the video can be played for 5 seconds# irrespective for length of videotime.sleep(5) |
Output :



