Open In App

Python VLC MediaPlayer – Getting Play Rate

Last Updated : 11 Apr, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

In this article we will see how we can get media play rate 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. We can create a MediaPlayer object with the help of MediaPlayer method. Media play rate is basically is the speed of the video, more the rate faster the video get played, default value is 1.0, in order to slow down the video set rate value less than 1. This rate can be set with the help of set_rate method.
 

In order to do this we will use set_rate method with the MediaPlayer object
Syntax : media_player.set_rate()
Argument : It takes no argument
Return : It returns float value 
 

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)
 
# setting play rate
# doubles the speed of the video
media_player.set_rate(2)
 
 
# start playing video
media_player.play()
 
# wait so the video can be played for 5 seconds
# irrespective for length of video
time.sleep(5)
 
# getting play rate
value = media_player.get_rate()
 
# printing value
print("Play Rate : ")
print(value)


Output : 
 

 

Play Rate : 
2.0

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 play rate
# halves the speed of the video
media_player.set_rate(0.5)
 
 
# start playing video
media_player.play()
 
# wait so the video can be played for 5 seconds
# irrespective for length of video
time.sleep(5)
 
# getting play rate
value = media_player.get_rate()
 
# printing value
print("Play Rate : ")
print(value)


Output : 
 

 

Play Rate : 
0.5

 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads