GstTag.TagMux¶
- Subclasses:
None
Methods¶
- Inherited:
Gst.Element (82), Gst.Object (27), GObject.Object (37), Gst.TagSetter (6)
- Structs:
Virtual Methods¶
- Inherited:
|
|
|
Properties¶
- Inherited:
Signals¶
- Inherited:
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
---|---|---|---|
element |
r |
parent element |
Class Details¶
- class GstTag.TagMux(**kwargs)¶
- Bases:
- Abstract:
Yes
- Structure:
Provides a base class for adding tags at the beginning or end of a stream.
- Deriving from
GstTag.TagMux
Subclasses have to do the following things:
In their base init function, they must add pad templates for the sink pad and the source pad to the element class, describing the media type they accept and output in the caps of the pad template.
In their class init function, they must override the GST_TAG_MUX_CLASS(mux_klass)->render_start_tag and/or GST_TAG_MUX_CLASS(mux_klass)->render_end_tag vfuncs and set up a render function.
- do_render_end_tag(tag_list) virtual¶
- Parameters:
tag_list (
Gst.TagList
) –- Return type:
create a tag buffer to add to the end of the input stream given a tag list, or
None
- do_render_start_tag(tag_list) virtual¶
- Parameters:
tag_list (
Gst.TagList
) –- Return type:
create a tag buffer to add to the beginning of the input stream given a tag list, or
None