0

我遇到了与以下相同的问题: 无法在 Python 中导入 GST 但是,它的解决方案对我不起作用。

我将 Win7 64 位与 Python 2.7、GStreamer 0.10.7 和 PyGTK 2.24 一起使用。我收到的确切错误是:

>>>import gst
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python27\lib\site-packages\gst-0.10\gst\__init__.py", line 87, in <mo
dule>
    from _gst import *
ImportError: DLL load failed: The specified module could not be found.

有什么我做错了吗?

提前致谢

4

1 回答 1

1
import pygst
pygst.require('0.10')
import gst
于 2012-12-01T17:44:49.503 回答