Bin.add

bool add(gst.element.Element element)

Adds the given element to the bin. Sets the element's parent, and thus takes ownership of the element. An element can only be added to one bin.

If the element's pads are linked to other pads, the pads will be unlinked before the element is added to the bin.

When you add an element to an already-running pipeline, you will have to

take care to set the state of the newly-added element to the desired state (usually PLAYING or PAUSED, same you set the pipeline to originally) with [gst.element.Element.setState], or use [gst.element.Element.syncStateWithParent]. The bin or pipeline will not take care of this for you.

Parameters

elementthe #GstElement to add

Returns

true if the element could be added, false if

the bin does not want to accept the element.