Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
GStreamer::TagSetter - Element interface that allows setting and retrieval of media metadata HIERARCHY
Glib::Interface +----GStreamer::TagSetter METHODS
$setter->add_tags ($mode, $tag, $sv, ...) o $mode (GStreamer::TagMergeMode) o $tag (string) o $sv (scalar) o ... (list) $setter->merge_tags ($list, $mode) o $list (GStreamer::TagList) o $mode (GStreamer::TagMergeMode) taglist = $setter->get_tag_list tagmergemode = $setter->get_tag_merge_mode $setter->set_tag_merge_mode ($mode) o $mode (GStreamer::TagMergeMode) ENUMS AND FLAGS
enum GStreamer::TagMergeMode o 'undefined' / 'GST_TAG_MERGE_UNDEFINED' o 'replace-all' / 'GST_TAG_MERGE_REPLACE_ALL' o 'replace' / 'GST_TAG_MERGE_REPLACE' o 'append' / 'GST_TAG_MERGE_APPEND' o 'prepend' / 'GST_TAG_MERGE_PREPEND' o 'keep' / 'GST_TAG_MERGE_KEEP' o 'keep-all' / 'GST_TAG_MERGE_KEEP_ALL' o 'count' / 'GST_TAG_MERGE_COUNT' 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::TagSetter(3pm)

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

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

replace space with delimiter in whole file -perl

Hi I have a file which have say about 100,000 records.. the records in it look like Some kind of text 1234567891 abcd February 14, 2008 03:58:54 AM lmnop This is how it looks.. if u notice there is a 2byte space between each column.. and im planning to replace that with '|' .. ... (11 Replies)
Discussion started by: meghana
11 Replies

2. Shell Programming and Scripting

setter and getter functions for file manipulation with sed

Hi, I would really appreciate some help, I couldn't nail my problem: I would like to create some setter and getter functions to make my life easier. my sample file contains: keyword - some tabs - value - semicolon number 12.1; float .3; double 12; real 12.2324; stuff .234; decimal... (5 Replies)
Discussion started by: Toorop
5 Replies

3. UNIX for Advanced & Expert Users

Search and replace a line in perl

Hi All, i can replace a perticular value in sentence using perl. perl -pi -e 's/old/new/' sample.txt but i am not able to replace whole string by perl. file1 contains "jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=10.147.109.211)(PORT=1526))(CONNECT_DATA=(SID= MWDBD22)))". i... (3 Replies)
Discussion started by: arindam guha
3 Replies