[gst-devel] Gnonlin and media-start

Brandon Lewis brandon_lewis at berkeley.edu
Sat Feb 23 00:20:46 CET 2008


Oh, one more thing:
> 
> #!/usr/bin/python
> import pygst
> pygst.require("0.10")
> import gst
> import gobject
> import sys
> 

The above isn't quite right. This is the proper way to initialize pygst:

#!/usr/bin/python
import gobject
gobject.threads_init()
import pygst
pygst.require("0.10")
import gst
.....




More information about the gstreamer-devel mailing list