Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
GStreamer::ElementFactory - Create GstElements from a factory HIERARCHY
Glib::Object +----GStreamer::Object +----GStreamer::PluginFeature +----GStreamer::ElementFactory METHODS
string = $factory->get_author boolean = $factory->can_sink_caps ($caps) o $caps (GStreamer::Caps) boolean = $factory->can_src_caps ($caps) o $caps (GStreamer::Caps) element or undef = $factory->create ($name) o $name (string or undef) string = $factory->get_description string = $factory->get_element_type elementfactory or undef = GStreamer::ElementFactory->find ($name) o $name (string) string = $factory->get_klass string = $factory->get_longname list = GStreamer::ElementFactory->make ($factoryname, $name, ...) o $factoryname (string) o $name (string) o ... (list) list = $factory->get_uri_protocols uritype = $factory->get_uri_type ENUMS AND FLAGS
enum GStreamer::URIType o 'unknown' / 'GST_URI_UNKNOWN' o 'sink' / 'GST_URI_SINK' o 'src' / 'GST_URI_SRC' SEE ALSO
GStreamer, Glib::Object, GStreamer::Object, GStreamer::PluginFeature 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::ElementFactory(3pm)

Check Out this Related 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)
Man Page

5 More Discussions You Might Find Interesting

1. Red Hat

Caps lock dtterm

Hello, We are having a problem with running dtterm off a RHEL server. Logging into an HP-UX server from a RHEL 5.1 desktop, setting DISPLAY and running dtterm, the caps lock does not work. We have been playing with xmodmap & stty but to no avail. Any help appreciated. mgb (1 Reply)
Discussion started by: mgb
1 Replies

2. HP-UX

Caps lock dtterm

Hello, We are having a problem with running dtterm off a RHEL server. Logging into an HP-UX server from a RHEL 5.1 desktop, setting DISPLAY and running dtterm, the caps lock does not work. We have been playing with xmodmap & stty but to no avail. Any help appreciated. mgb (7 Replies)
Discussion started by: mgb
7 Replies

3. UNIX for Dummies Questions & Answers

Caps lock problem

hi all this s quite a foolish problem. I seem to hav pressed some keys s.t in unix, my letters are comin in caps and with caps lock on, i am getting lowercase letters. :o Pls help. Also is there any reference or manual where i can check in case such problems arrise? thanx in advance curiosity (4 Replies)
Discussion started by: curiosity
4 Replies

4. Programming

C++ abstract (singleton) factory implementation...

I want to create an abstract factory template which will allow me to pass in an "ID" for a subclass and return the singleton instance of that class stored in the factory. It'd be easy to adapt for "multi-ton", but for its present use this isn't necessary. The requirements are: - I don't want... (2 Replies)
Discussion started by: DreamWarrior
2 Replies

5. Shell Programming and Scripting

Generate all possible word with caps and no caps

With use of sed/awk, how can I print all possible combinations of a word with caps/non-caps. Eg Applying operation on "cap" should generate output as follows. cap CAP Cap cAp caP CAp cAP CaP (12 Replies)
Discussion started by: anil510
12 Replies