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::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)
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