Python VLC 实例 – 设置应用程序名称
在本文中,我们将了解如何在Python vlc 模块中的 Instance 类中设置应用程序名称。 VLC媒体播放器是VideoLAN项目开发的一款免费开源的便携式跨平台媒体播放软件和流媒体服务器。 Instance 充当 VLC 库的主要对象,使用 Instance 对象我们可以创建媒体播放器、列表播放器或 VLC 中可用的任何其他播放器。实例类是 VLC 中用于创建各种对象的基类。当协议需要时,LibVLC 将名称作为用户代理字符串传递。
In order to do this we will use set_user_agent
method with the Instance object
Syntax : instance.set_user_agent(name, http)
Argument : It takes name and http agent as argument
Return : It returns None
下面是实现
# importing vlc module
import vlc
# importing time module
import time
# creating Instance class object
player = vlc.Instance()
# setting application name
player.set_user_agent("GFG", "GFG / Python / 3.6")
# creating a new media list
media_list = player.media_list_new()
# creating a media player object
media_player = player.media_list_player_new()
# creating a new media
media = player.media_new("death_note.mkv")
# adding media to media list
media_list.add_media(media)
# setting media list to the mediaplayer
media_player.set_media_list(media_list)
# start playing video
media_player.play()
# wait so the video can be played for 5 seconds
# irrespective for length of video
time.sleep(5)
输出 :
另一个例子
下面是实现
# importing vlc module
import vlc
# importing time module
import time
# creating Instance class object
player = vlc.Instance()
# setting application name
player.set_user_agent("GFG-2", "GFG-2 / Python / 3.6")
# creating a new media list
media_list = player.media_list_new()
# creating a media player object
media_player = player.media_list_player_new()
# creating a new media
media = player.media_new("1.mp4")
# adding media to media list
media_list.add_media(media)
# setting media list to the mediaplayer
media_player.set_media_list(media_list)
# start playing video
media_player.play()
# wait so the video can be played for 5 seconds
# irrespective for length of video
time.sleep(5)
输出 :