0

Python で GSTを インポートできません が、その解決策がうまくいきません。

Python 2.7、GStreamer 0.10.7、および PyGTK 2.24 で Win7 64 ビットを使用しています。私が受け取る正確なエラーは次のとおりです。

>>>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 に答える