Hi everyone,
I’m exploring the possibility of creating a Gst object, e.g. a GstBuffer
, in Rust and passing it to Python for use in a GStreamer pipeline. My goal is to have the object properly marshalled as an object from PyGObject so Python can interact with it seamlessly.
I’m aware that GStreamer is based on the GObject library, and both Rust and Python have bindings for GObject (via gstreamer-rs
and PyGObject, respectively). However, I’m unsure if it’s possible to bridge the two languages in this way.
Any insights, references, or pointers to relevant documentation would be greatly appreciated.
Thanks in advance.