parse_bin_from_description_full
function parse_bin_from_description_full(bin_description:String, ghost_unlinked_pads:Boolean, context:Gst.ParseContext, flags:Gst.ParseFlags):Gst.Bin { // Gjs wrapper for gst_parse_bin_from_description_full() }
This is a convenience wrapper around parse_launch to create a Gst.Bin from a gst-launch-style pipeline description. See parse_launch and the gst-launch man page for details about the syntax. Ghost pads on the bin for unlinked source or sink pads within the bin can automatically be created (but only a maximum of one ghost pad for each direction will be created; if you expect multiple unlinked source pads or multiple unlinked sink pads and want them all ghosted, you will have to create the ghost pads yourself).
- bin_description
command line describing the bin
- ghost_unlinked_pads
whether to automatically create ghost pads for unlinked source or sink pads within the bin
- context
a parse context allocated with Gst.ParseContext.new, or null
- flags
parsing options, or #GST_PARSE_FLAG_NONE
- Returns
a newly-created bin, or null if an error occurred.