📜  Python VLC MediaPlayer – 获取播放速率

📅  最后修改于: 2022-05-13 01:54:23.582000             🧑  作者: Mango

Python VLC MediaPlayer – 获取播放速率

在本文中,我们将看到如何在Python vlc 模块中获取 MediaPlayer 对象的媒体播放速率。 VLC媒体播放器是VideoLAN项目开发的一款免费开源的便携式跨平台媒体播放软件和流媒体服务器。 MediaPlayer 对象是 vlc 模块中用于播放视频的基本对象。我们可以借助 MediaPlayer 方法创建一个 MediaPlayer 对象。媒体播放速率基本上是视频的速度,越多视频播放的速率越快,默认值为1.0,为了减慢视频设置速率值小于1。这个速率可以在set_rate的帮助下设置方法。

下面是实现

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)


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)


输出 :

Play Rate : 
2.0

另一个例子
下面是实现

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)

输出 :

Play Rate : 
0.5