Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gstreamer::interfaces(3pm) [debian man page]

GStreamer::Interfaces(3pm)				User Contributed Perl Documentation				GStreamer::Interfaces(3pm)

NAME
GStreamer::Interfaces - Perl interface to the GStreamer Interfaces library SYNOPSIS
use GStreamer::Interfaces; # GStreamer::PropertyProbe my $sink = GStreamer::ElementFactory -> make(alsasink => "sink"); my $pspec = $sink -> get_probe_property("device"); if ($sink -> needs_probe($pspec)) { $sink -> probe_property($pspec); } my @devices = $sink -> get_probe_values($pspec); # GStreamer::XOverlay my $overlay = GStreamer::ElementFactory -> make(xvimagesink => "overlay"); $overlay -> set_xwindow_id($xid); ABSTRACT
GStreamer::Interfaces provides access to some of the interfaces in the GStreamer Interfaces library. Currently, that's GStreamer::PropertyProbe and GStreamer::XOverlay. INTERFACES
GStreamer::PropertyProbe pspecs = $element->get_probe_properties pspec = $element->get_probe_property (name) bool = $element->needs_probe (pspec) $element->probe_property (pspec) values = $element->get_probe_values (pspec) values = $element->probe_get_probe_values (pspec) bool = $element->needs_probe_name (name) $element->probe_property_name (name) values = $element->get_probe_values_name (name) values = $element->probe_get_probe_values_name (name) GStreamer::XOverlay $overlay->set_xwindow_id (xwindow_id) $overlay->expose $overlay->got_xwindow_id (xwindow_id) $overlay->prepare_xwindow_id $overlay->handle_events (bool) (since 0.10.12) AUTHOR
Torsten Schoenfeld <kaffeetisch at gmx dot de> COPYRIGHT
Copyright (C) 2005-2010 by the gtk2-perl team perl v5.14.2 2010-03-20 GStreamer::Interfaces(3pm)

Check Out this Related Man Page

GStreamer::Event::Custom(3pm)				User Contributed Perl Documentation			     GStreamer::Event::Custom(3pm)

NAME
GStreamer::Event::Custom - Structure describing events that are passed up and down a pipeline METHODS
GstEvent = GStreamer::Event::Custom->new ($type, $structure) o $type (GStreamer::EventType) o $structure (GStreamer::Structure) ENUMS AND FLAGS
enum GStreamer::EventType o 'unknown' / 'GST_EVENT_UNKNOWN' o 'flush-start' / 'GST_EVENT_FLUSH_START' o 'flush-stop' / 'GST_EVENT_FLUSH_STOP' o 'eos' / 'GST_EVENT_EOS' o 'newsegment' / 'GST_EVENT_NEWSEGMENT' o 'tag' / 'GST_EVENT_TAG' o 'buffersize' / 'GST_EVENT_BUFFERSIZE' o 'sink-message' / 'GST_EVENT_SINK_MESSAGE' o 'qos' / 'GST_EVENT_QOS' o 'seek' / 'GST_EVENT_SEEK' o 'navigation' / 'GST_EVENT_NAVIGATION' o 'latency' / 'GST_EVENT_LATENCY' o 'step' / 'GST_EVENT_STEP' o 'custom-upstream' / 'GST_EVENT_CUSTOM_UPSTREAM' o 'custom-downstream' / 'GST_EVENT_CUSTOM_DOWNSTREAM' o 'custom-downstream-oob' / 'GST_EVENT_CUSTOM_DOWNSTREAM_OOB' o 'custom-both' / 'GST_EVENT_CUSTOM_BOTH' o 'custom-both-oob' / 'GST_EVENT_CUSTOM_BOTH_OOB' SEE ALSO
GStreamer COPYRIGHT
Copyright (C) 2005-2011 by the gtk2-perl team. This software is licensed under the LGPL. See GStreamer for a full notice. perl v5.14.2 2012-03-01 GStreamer::Event::Custom(3pm)
Man Page