Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gst-xmllaunch(1) [opensolaris man page]

gst-xmllaunch(1)						   User Commands						  gst-xmllaunch(1)

NAME
gst-xmllaunch - build and run a GStreamer pipeline from an XML serialization SYNOPSIS
gst-xmllaunch [--exclude=type1,type2,...] [--messages] [--no-fault] [--output-=file] [--tags] [--trace] [--verbose] [--version] [gst-std- options] XML-file [element.property=value...] DESCRIPTION
gst-xmllaunch builds and runs a basic GStreamer pipeline, loading it from an XML description. You can produce the XML description using gst-inspect(1) with the -o option or by calling gst_xml_write_file() in your own application. You can set XML-file to "-", to read from stdin. XML-file can also be a URI, thanks to libxml. See gst-launch(1) for the syntax to set element names, and run gst-inspect(1) to see what properties various elements have. OPTIONS
The following options are supported by gst-xmllaunch: -X, --exclude=type1,type2,... Do not output status information of specified type. -m, --messages Output messages. -f, --no-fault Do not install a fault handler. -o, -output-=file Save XML representation of pipeline to file, then exit. -t, --tags Output tags, also known as metadata. -T, --trace Print memory allocation trace, if enabled at compile time. -v, --verbose Output status information and property notifications. --version Print GStreamer version number. gst-std-options Standard options available for use with most GStreamer applications. See gst-std-options(5) for more information. EXAMPLES
Example 1: Setting the Location Property of the Element filesrc0 to "music.mp3". See for syntax on setting element names, and gst- inspect(1) to see what properties various elements have. example% gst-xmllaunch my-pipeline.xml filesrc0.location=music.mp3 FILES
The following files are used by this application: /usr/bin/gst-xmllaunch Executable to build and run a GStreamer pipeline from an XML serialization ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgnome-media | +-----------------------------+-----------------------------+ |Interface stability |Volatile | +-----------------------------+-----------------------------+ SEE ALSO
gst-feedback(1), gst-inspect(1), gst-launch(1), gst-typefind(1), gst-xmlinspect(1), gstreamer-properties(1), libgstreamer-0.10(3), attributes(5), gst-std-options(5) NOTES
Original man page written by the GStreamer team at http://gstreamer.net/. Updated by Brian Cameron, Sun Microsystems Inc., 2004, 2006. SunOS 5.11 14 Oct 2004 gst-xmllaunch(1)

Check Out this Related Man Page

GStreamer(1)						      General Commands Manual						      GStreamer(1)

NAME
gst-xmllaunch - build and run a GStreamer pipeline from an XML serialization SYNOPSIS
gst-xmllaunch [OPTION...] XML-FILE [ ELEMENT.PROPERTY=VALUE ... ] DESCRIPTION
gst-xmllaunch is a tool that is used to build and run a basic GStreamer pipeline, loading it from an XML description. You can produce the XML description using gst-launch-0.10(1) with the -o option or by calling gst_xml_write_file() in your own app. A simple commandline looks like: gst-xmllaunch my-pipeline.xml filesrc0.location=music.mp3 This sets the location property of the element named filesrc0 to the value "music.mp3". See gst-launch(1) for syntax on setting element names, and gst-inspect to see what properties various elements have. You can pass "-" as the XML-FILE to read from stdin. XML-FILE can be a URI as well, thanks to the wizardry of libxml. I'm not really sure what all is supported, it seems http works just fine though. OPTIONS
gst-xmllaunch accepts the following options: --help Print help synopsis and available FLAGS --silent Do not output status information --exclude=TYPE, -XTYPE Do not output status information of TYPE --output=FILE, -oFILE Save XML representation of pipeline to FILE and exit --gst-info-mask=FLAGS GStreamer info flags to set (list with --help) --gst-debug-mask=FLAGS GStreamer debugging flags to set (list with --help) --gst-mask=FLAGS GStreamer info and debugging flags to set (list with --help) --gst-plugin-spew GStreamer info flags to set Enable printout of errors while loading GStreamer plugins --gst-plugin-path=PATH Add directories separated with ':' to the plugin search path SEE ALSO
gst-feedback(1), gst-inspect(1), gst-launch(1), gst-typefind(1) AUTHOR
The GStreamer team at http://gstreamer.freedesktop.org/ March 2001 GStreamer(1)
Man Page