Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
GStreamer::Bin - Base class and element that can contain other elements HIERARCHY
Glib::Object +----GStreamer::Object +----GStreamer::Element +----GStreamer::Bin INTERFACES
GStreamer::ChildProxy METHODS
element = GStreamer::Bin->new ($name) o $name (string) $bin->add ($element, ...) o $element (GStreamer::Element) o ... (list) element = $bin->get_by_interface ($interface) o $interface (string) element = $bin->get_by_name ($name) o $name (string) element = $bin->get_by_name_recurse_up ($name) o $name (string) iterator = $bin->iterate_all_by_interface ($interface) o $interface (string) iterator = $bin->iterate_elements iterator = $bin->iterate_recurse iterator = $bin->iterate_sinks iterator = $bin->iterate_sorted $bin->remove ($element, ...) o $element (GStreamer::Element) o ... (list) PROPERTIES
'async-handling' (boolean : default false : readable / writable / private) The bin will handle Asynchronous state changes 'message-forward' (boolean : default false : readable / writable / private) Forwards all children messages SIGNALS
element-added (GStreamer::Bin, GStreamer::Element) element-removed (GStreamer::Bin, GStreamer::Element) boolean = do-latency (GStreamer::Bin) SEE ALSO
GStreamer, Glib::Object, GStreamer::Object, GStreamer::Element 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::Bin(3pm)

Check Out this Related Man Page

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

NAME
GStreamer::ChildProxy - Interface for multi child elements. DESCRIPTION
To avoid a name clash with Glib::Object::get, gst_child_proxy_get and gst_child_proxy_set are bound as GStreamer::ChildProxy::get_child_property and GStreamer::ChildProxy::set_child_property respectively. HIERARCHY
Glib::Interface +----GStreamer::ChildProxy METHODS
$object->child_added ($child) o $child (GStreamer::Object) object or undef = $parent->get_child_by_index ($index) o $index (integer) object or undef = $parent->get_child_by_name ($name) o $name (string) list = $object->get_child_property ($property, ...) o $property (string) o ... (list) $object->set_child_property ($property, $value, ...) o $property (string) o $value (scalar) o ... (list) $object->child_removed ($child) o $child (GStreamer::Object) integer = $parent->get_children_count SIGNALS
child-added (GStreamer::ChildProxy, Glib::Object) child-removed (GStreamer::ChildProxy, Glib::Object) SEE ALSO
GStreamer, Glib::Interface 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::ChildProxy(3pm)
Man Page

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Bin Filr

-------------------------------------------------------------------------------- Can u extract a .bin file to windows then upload it to a linux server and it still will run like it should ? (2 Replies)
Discussion started by: potter
2 Replies

2. Windows & DOS: Issues & Discussions

Path of Recycle Bin on Windows

hello everybody, I am trying to find the path of the Recycle Bin. I know that it's a temporary storage place, but it should have a path that we can refer to. I want to know it because I sometimes use cygwin to work on Windows, and when you delete something with it, it's gone. I just checked... (4 Replies)
Discussion started by: milhan
4 Replies

3. UNIX for Advanced & Expert Users

How to convert Dat to Bin

Hi all, I want to convert Dat file into binary file. So we have any command in HP Unix. (3 Replies)
Discussion started by: ravi.sadani19
3 Replies

4. Shell Programming and Scripting

perl help

$listener_home= /opt/oracle/10.2/bin/tnslsnr I want to remove /bin/tnslsnr from the above variable and assign the rest to $listener_home . so the $listener_home will looks as $listener_home =/opt/oracle/10.2 I am trying this code : $listener_home =~ tr/bin/tnslsnr//d it's not working... (1 Reply)
Discussion started by: talashil
1 Replies

5. Shell Programming and Scripting

grep & awk

Hi all, I'm figuring on how to grep only specific data I want below: Bin Total % ----- ------- ----- 1 15 42.9 Bin Total % ----- ------- ----- 2 15 ... (3 Replies)
Discussion started by: *Jess*
3 Replies

6. Shell Programming and Scripting

queue problem perl

Hi, I have implement queue but it take last element instead of fist element #!/usr/bin/perl -w print "Enter page Access"; chomp ($item = <STDIN>); my @queue = split /\s+/, $item; print "Enter a page frame"; $frame = <STDIN>; if ( $frame >= 3 ) { $fifo = pop @queue; print... (1 Reply)
Discussion started by: guidely
1 Replies

7. Shell Programming and Scripting

Recycle Bin

what is recycle bin mode in unix??? (4 Replies)
Discussion started by: arun508.gatike
4 Replies

8. Shell Programming and Scripting

Bin iteratively based on each row

Hi I have a file some thing like below. I want to bin the data. My Bin size is 100. items number HELIX1 75 HELIX6 160 HELIX2 88 HELIX19 114 HELIX5 61 HELIX4 167 it should consider each elemet under the number column and bin all the lines like below with 100... (7 Replies)
Discussion started by: and_y
7 Replies

9. UNIX for Advanced & Expert Users

Array Element

This question is for someone that's more familiar with Array Element. I need to know if the maximum array element that can be assigned is 1024 and if its so, Is there a workaround solution when the counter exceeded 1024? param_array="$param_nam" counter=$counter+1 #to avoid space... (3 Replies)
Discussion started by: cumeh1624
3 Replies