📜  Python VLC MediaPlayer – 获取字幕计数

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

Python VLC MediaPlayer – 获取字幕计数

在本文中,我们将看到如何在Python vlc 模块中获取 MediaPlayer 对象的媒体可用的字幕计数。 VLC媒体播放器是VideoLAN项目开发的一款免费开源的便携式跨平台媒体播放软件和流媒体服务器。 MediaPlayer 对象是 vlc 模块中用于播放视频的基本对象。字幕是从电影、电视节目、视频游戏等中对话或评论的抄本或剧本衍生而来的文本,通常显示在屏幕底部,但如果有,也可以位于屏幕顶部屏幕底部已经有文字。

下面是实现

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 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 subtitle count
value = media_player.video_get_spu_count()
 
# printing value
print("Subtitle Count: ")
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 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 subtitle count
value = media_player.video_get_spu_count()
 
# printing value
print("Subtitle Count: ")
print(value)


输出 :

Subtitle Count: 
2

另一个例子下面是实现

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 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 subtitle count
value = media_player.video_get_spu_count()
 
# printing value
print("Subtitle Count: ")
print(value)

输出 :

Subtitle Count: 
0