Python VLC MediaPlayer – 启用鼠标输入处理
在本文中,我们将看到如何在Python vlc 模块中启用鼠标输入来处理 MediaPlayer 对象。 VLC媒体播放器是VideoLAN项目开发的一款免费开源的便携式跨平台媒体播放软件和流媒体服务器。 MediPlyer 对象是 vlc 模块中用于播放视频的基本对象。通过输入处理可以创建事件处理程序并可以使用鼠标输入来执行操作。
In order to do this we will use video_set_mouse_input method with the MediaPlayer object
Syntax : media_player.video_set_mouse_input(True)
Argument : It takes bool as argument
Return : It returns None
下面是实现
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 mouse input enable
media_player.video_set_mouse_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)
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 mouse input enable
media_player.video_set_mouse_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)
输出 :
另一个例子
下面是实现
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 mouse input enable
media_player.video_set_mouse_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)
输出 :