Python VLC MediaPlayer – 获取曲目计数
在本文中,我们将了解如何在Python vlc 模块中获取 MediaPlayer 对象的曲目计数。 VLC媒体播放器是VideoLAN项目开发的一款免费开源的便携式跨平台媒体播放软件和流媒体服务器。 MediPlyer 对象是 vlc 模块中用于播放视频的基本对象。一个视频可以有多个用户可以选择的轨道。
In order to do this we will use video_get_track_count
method with the MediaPlayer object
Syntax : media_player.video_get_track_count()
Argument : It takes no argument
Return : It returns integer
下面是实现
# 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 video scale
media_player.video_set_scale(0.6)
# 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 track count
value = media_player.video_get_track_count()
# printing value
print("Track Count : ")
print(value)
输出 :
Track Count :
2
另一个例子
下面是实现
# 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 video scale
media_player.video_set_scale(0.6)
# 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 track count
value = media_player.video_get_track_count()
# printing value
print("Track Count : ")
print(value)
输出 :
Track Count :
2