“ Qt:检测到未经测试的Windows 10.0版本!”使用python-vlc时

时间:2019-01-30 06:03:01

标签: python qt vlc

我正在设置一个程序以在vlc中播放youtube链接,但出现此错误。我没有安装Qt,老实说,我什至没有完全确定Qt是什么或与什么有关系。

我尝试使用try忽略该错误,但这不起作用

import pafy
import vlc

url = "https://www.youtube.com/watch?v=bMt47wvK6u0"
video = pafy.new(url)
best = video.getbest()
playurl = best.url
Instance = vlc.Instance()
player = Instance.media_player_new()
Media = Instance.media_new(playurl)
Media.get_mrl()
player.set_media(Media)
player.play() 

1 个答案:

答案 0 :(得分:0)

解决了!我的实际VLC安装已过期。重新安装(两次,必须确保python和VLC均为32位),并且一切正常!