我在Windows上,我希望将Python Bindings用于VLC。我已按照说明从https://github.com/oaubert/python-vlc下载了模块。但是,我仍然无法导入模块。
错误如下所示:
Traceback (most recent call last):
File "<pyshell#5>", line 1, in <module>
import vlc
File "c:\python27\python-vlc-1.1.2\vlc.py", line 173, in <module>
dll, plugin_path = find_lib()
File "c:\python27\python-vlc-1.1.2\vlc.py", line 150, in find_lib
dll = ctypes.CDLL('libvlc.dll')
File "C:\Python27\lib\ctypes\__init__.py", line 353, in __init__
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] The specified module could not be found
我的目标是使用vlc实例在wxPython窗口中传输openCV网络摄像头视频。
答案 0 :(得分:2)