📜  Python VLC MediaPlayer – 暂停

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

Python VLC MediaPlayer – 暂停

在本文中,我们将看到如何在Python vlc 模块的 MediaPlayer 对象中暂停媒体。 VLC媒体播放器是VideoLAN项目开发的一款免费开源的便携式跨平台媒体播放软件和流媒体服务器。 MediaPlayer 对象是 vlc 模块中用于播放视频的基本对象。我们可以借助 MediaPlayer 方法创建一个 MediaPlayer 对象。我们可以借助 play 方法来播放视频。

下面是实现

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("D:\\pych\\bhuvan\\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)
 
# pausing the video
media_player.set_pause(1)


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)
 
 
 
# start playing video
media_player.play()
 
# wait so the video can be played for 3 seconds
# irrespective for length of video
time.sleep(3)
 
 
# pausing the video
media_player.set_pause(1)


输出:此视频将播放 5 秒,然后暂停另一个例子下面是实现

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)
 
 
 
# start playing video
media_player.play()
 
# wait so the video can be played for 3 seconds
# irrespective for length of video
time.sleep(3)
 
 
# pausing the video
media_player.set_pause(1)

输出:同样,该视频将播放 3 秒然后暂停