2012-02-22 4 views
0

같은 문제가 있습니다 : Cannot Import GST in Python 그러나 그 해결책은 저에게는 효과적이지 않습니다.GStreamer with Python 2.7에서 gst를 가져올 수 없습니다.

저는 파이썬 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. 

내가 잘못하고있는 것이 있습니까? 사전에

감사

답변

1
import pygst 
pygst.require('0.10') 
import gst 
관련 문제