Domanda

Ho lo stesso problema di:Impossibile importare GST in PythonTuttavia, la sua soluzione non funziona per me.

Sto usando Win7 64 bit con Python 2.7, GStreamer 0.10.7 e Pygtk 2.24. L'errore esatto che ricevo è:

>>>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.

C'è qualcosa che sto facendo di sbagliato?

Grazie in anticipo

È stato utile?

Soluzione

import pygst
pygst.require('0.10')
import gst
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top