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

NAME
GStreamer::Pipeline - Top-level bin with clocking and bus management functionality. HIERARCHY
Glib::Object +----GStreamer::Object +----GStreamer::Element +----GStreamer::Bin +----GStreamer::Pipeline INTERFACES
GStreamer::ChildProxy METHODS
element = GStreamer::Pipeline->new ($name) o $name (string or undef) $pipeline->auto_clock bus = $pipeline->get_bus clock = $pipeline->get_clock $pipeline->set_clock ($clock) o $clock (GStreamer::Clock) unsigned integer = $pipeline->get_last_stream_time $pipeline->set_new_stream_time ($time) o $time (unsigned integer) $pipeline->use_clock ($clock) o $clock (GStreamer::Clock) PROPERTIES
'auto-flush-bus' (boolean : default true : readable / writable / private) Whether to automatically flush the pipeline's bus when going from READY into NULL state 'delay' (Glib::UInt64 : default 0 : readable / writable / private) Expected delay needed for elements to spin up to PLAYING in nanoseconds SEE ALSO
GStreamer, Glib::Object, GStreamer::Object, GStreamer::Element, GStreamer::Bin 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::Pipeline(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