📜  Python VLC MediaPlayer - 检查它是否被加扰

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

Python VLC MediaPlayer - 检查它是否被加扰

在本文中,我们将看到如何在Python vlc 模块的 MediaPlayer 对象中检查当前媒体是否被打乱。 VLC媒体播放器是VideoLAN项目开发的一款免费开源的便携式跨平台媒体播放软件和流媒体服务器。 MediPlyer 对象是 vlc 模块中用于播放视频的基本对象。我们可以借助MediaPlayer方法创建一个 MediaPlayer 对象。加密/加扰意味着特定电视频道是安全的或被 DTH运算符或其他提供商锁定。

下面是实现

# 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)
  
# start playing video
media_player.play()
  
# wait so the video can be played for 5 seconds
# irrespective for length of video
time.sleep(5)
  
# checking if it scrambled
value = media_player.program_scrambled()
  
# printing value
print("Scrambled Program: ")
print(value)

输出 :

Scrambled Program: 
0

另一个例子
下面是实现

# 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 5 seconds
# irrespective for length of video
time.sleep(5)
  
# checking if it scrambled
value = media_player.program_scrambled()
  
# printing value
print("Scrambled Program: ")
print(value)

输出 :

Scrambled Program: 
0