Is it still possible to have standalone Python elements in GStreamer 1.0? -
i have application written gst-python gstreamer 0.10 trying port gstreamer 1.0.
in application, have custom elements written in python (subclasses of gst.basesrc
, gst.basetransform
). each python-element has own file , placed in /usr/lib/gstreamer-0.10/python
gst-launch
, gst-inspect
can pick them (which do).
this handy, since makes possible me experiment different pipelines directly on command line.
now trying port application (according guide https://wiki.ubuntu.com/novacut/gstreamer1.0) looks if still possible write python-elements pygi, seems possibility store them in separate files , have them integrated in gstreamer gone.
all examples have found talks placing elements in program writing , registering them call gst.element.register
, if so, possible reach custom elements directly program , want them work standalone (with gst-launch) without having write filter chains in program.
so know if still possible gstreamer 1.0?
in order other people struggling this, answering myself.
after deep research have found out has not been possible have standalone python elements before gst-python 1.4.0 released on 2014-10-20.
for release notes take here:
http://gstreamer.freedesktop.org/releases/gst-python/1.4.0.html
Comments
Post a Comment