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::PadTemplate(3pm)				User Contributed Perl Documentation			       GStreamer::PadTemplate(3pm)

NAME
GStreamer::PadTemplate - Describe the media type of a pad. HIERARCHY
Glib::Object +----GStreamer::Object +----GStreamer::PadTemplate METHODS
padtemplate = GStreamer::PadTemplate->new ($name_template, $direction, $presence, $caps) o $name_template (string) o $direction (GStreamer::PadDirection) o $presence (GStreamer::PadPresence) o $caps (GStreamer::Caps) caps = $templ->get_caps paddirection = $templ->get_direction string = $templ->get_name_template $templ->pad_created ($pad) o $pad (GStreamer::Pad) padpresence = $templ->get_presence PROPERTIES
'caps' (GStreamer::Caps : default undef : readable / writable / construct-only / private) The capabilities of the pad described by the pad template 'direction' (GStreamer::PadDirection : default "unknown" : readable / writable / construct-only / private) The direction of the pad described by the pad template 'name-template' (string : default undef : readable / writable / construct-only / private) The name template of the pad template 'presence' (GStreamer::PadPresence : default "always" : readable / writable / construct-only / private) When the pad described by the pad template will become available SIGNALS
pad-created (GStreamer::PadTemplate, GStreamer::Pad) ENUMS AND FLAGS
enum GStreamer::PadDirection o 'unknown' / 'GST_PAD_UNKNOWN' o 'src' / 'GST_PAD_SRC' o 'sink' / 'GST_PAD_SINK' enum GStreamer::PadPresence o 'always' / 'GST_PAD_ALWAYS' o 'sometimes' / 'GST_PAD_SOMETIMES' o 'request' / 'GST_PAD_REQUEST' SEE ALSO
GStreamer, Glib::Object, GStreamer::Object 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::PadTemplate(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