Bin.add

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.

class Bin
bool
add

Parameters

element gst.element.Element

the #GstElement to add

Return Value

Type: bool

true if the element could be added, false if the bin does not want to accept the element.