tag
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1112
TagFu 0.2
TagFu is a library for tagging entities (which can be anything with a url) with Tags or metadata. more>>
TagFu is a library for tagging entities (which can be anything with a url) with Tags or metadata. The project is implemented in Python and very closely mimics basic Python data structures.
Tags is a Python list of tags, Entities is a Python List of Entity objects, and Entity is a dict which contains all the key-value pairs for all tags associated to the Entity. The key is the Tag name and value is an arbitrary value, if no value is set, the tag is considered to be a simple tag.
The current direction of development is towards a C port to make binding to other languages easier, and the development of applications to use TagFu.
<<lessTags is a Python list of tags, Entities is a Python List of Entity objects, and Entity is a dict which contains all the key-value pairs for all tags associated to the Entity. The key is the Tag name and value is an arbitrary value, if no value is set, the tag is considered to be a simple tag.
The current direction of development is towards a C port to make binding to other languages easier, and the development of applications to use TagFu.
Download (0.008MB)
Added: 2006-11-19 License: BSD License Price:
1069 downloads
GTag 0.9.2
GTag is a music tag editor for gtk+ 2.4. more>>
GTag is a music tag editor for gtk+ 2.4.
GTag is a music tag editor for gtk+ 2.4. It supports ogg, mp3 and flac audio files. It uses the taglib library and also requires libglade.
<<lessGTag is a music tag editor for gtk+ 2.4. It supports ogg, mp3 and flac audio files. It uses the taglib library and also requires libglade.
Download (0.020MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1555 downloads
FLV::Tag 0.03
FLV::Tag is a flash video file data structure. more>>
FLV::Tag is a flash video file data structure.
This is a subclass of FLV::Base.
$self->parse($fileinst)
Takes a FLV::File instance and extracts an FLV tag from the file stream. This method then multiplexes that tag into one of the subtypes: video, audio or meta. This method throws exceptions if the stream is not a valid FLV v1.0 or v1.1 file.
At the end, this method stores the subtag instance, which can be retrieved with get_payload().
There is no return value.
$self->get_payload()
Returns the subtag instance found by parse(). This will be instance of FLV::VideoTag, FLV::AudioTag or FLV::MetaTag.
$pkg->serialize($tag, $filehandle)
$self->serialize($tag, $filehandle)
Serializes the specified video, audio or meta tag. If that representation is not complete, this throws an exception via croak(). Returns a boolean indicating whether writing to the file handle was successful.
<<lessThis is a subclass of FLV::Base.
$self->parse($fileinst)
Takes a FLV::File instance and extracts an FLV tag from the file stream. This method then multiplexes that tag into one of the subtypes: video, audio or meta. This method throws exceptions if the stream is not a valid FLV v1.0 or v1.1 file.
At the end, this method stores the subtag instance, which can be retrieved with get_payload().
There is no return value.
$self->get_payload()
Returns the subtag instance found by parse(). This will be instance of FLV::VideoTag, FLV::AudioTag or FLV::MetaTag.
$pkg->serialize($tag, $filehandle)
$self->serialize($tag, $filehandle)
Serializes the specified video, audio or meta tag. If that representation is not complete, this throws an exception via croak(). Returns a boolean indicating whether writing to the file handle was successful.
Download (0.72MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1196 downloads
Tag Editor 0.6
Tag Editor is a Firefox extension that generates tag links for your blog. more>>
Tag Editor is a Firefox extension that generates tag links for your blog. Its practically a tag editor for your blog.
Main features:
- Supports del.icio.us and Technorati style tag links
- Can get tag list from del.icio.us accounts
- Supports link attribute customization
- Supports tr-TR locale
<<lessMain features:
- Supports del.icio.us and Technorati style tag links
- Can get tag list from del.icio.us accounts
- Supports link attribute customization
- Supports tr-TR locale
Download (0.032MB)
Added: 2007-05-29 License: MPL (Mozilla Public License) Price:
542 downloads
tag-not-ed 1.0
tag-not-ed is a TAGged NOTes EDitor. more>>
tag-not-ed is a TAGged NOTes EDitor.
This is the homepage of tag-not-ed, my favourite program. [You might have read this before somewhere else] Give it a try if you feel like it.
It is a system which allows you to create and manage text documents by attaching tags to them.
Later, documents can be retrieved by running queries on those tags (e.g., "show me all docs that deal with dogs and cats").
<<lessThis is the homepage of tag-not-ed, my favourite program. [You might have read this before somewhere else] Give it a try if you feel like it.
It is a system which allows you to create and manage text documents by attaching tags to them.
Later, documents can be retrieved by running queries on those tags (e.g., "show me all docs that deal with dogs and cats").
Download (0.023MB)
Added: 2006-02-13 License: GPL (GNU General Public License) Price:
1349 downloads
Tag Soup 1.0.5
TagSoup is a SAX2 parser written in Java. more>>
TagSoup is a SAX2 parser written in Java that, instead of parsing well-formed or valid XML. Tag Soup parses HTML as it is found in the wild: nasty and brutish, though quite often far from short.
By providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. It is a parser, not a whole application; it isnt intended to permanently clean up bad HTML, as HTML Tidy does, only to parse it on the fly.
The following options are understood:
--files
Output into individual files, with html extensions changed to xhtml. Otherwise, all output is sent to the standard output.
--html
Output is in clean HTML: the XML declaration is suppressed, as are end-tags for the known empty elements.
--omit-xml-declaration
The XML declaration is suppressed.
--method=html
End-tags for the known empty HTML elements are suppressed.
--pyx
Output is in PYX format.
--pyxin
Input is in PYXoid format (need not be well-formed).
--nons
Namespaces are suppressed. Normally, all elements are in the XHTML 1.x namespace, and all attributes are in no namespace.
--nobogons
Bogons (unknown elements) are suppressed. Normally, they are treated as empty.
--nodefaults
suppress default attribute values
--nocolons
change explicit colons in element and attribute names to underscores
--norestart
dont restart any normally restartable elements
--any
Bogons are given a content model of ANY rather than EMPTY.
--lexical
Pass through HTML comments. Has no effect when output is in PYX format.
--reuse
Reuse a single instance of TagSoup parser throughout. Normally, a new one is instantiated for each input file.
--nocdata
Change the content models of the script and style elements to treat them as ordinary #PCDATA (text-only) elements, as in XHTML, rather than with the special CDATA content model.
--encoding=encoding
Specify the input encoding. The default is the Java platform default.
--help
Print help.
--version
Print the version number.
<<lessBy providing a SAX interface, it allows standard XML tools to be applied to even the worst HTML. It is a parser, not a whole application; it isnt intended to permanently clean up bad HTML, as HTML Tidy does, only to parse it on the fly.
The following options are understood:
--files
Output into individual files, with html extensions changed to xhtml. Otherwise, all output is sent to the standard output.
--html
Output is in clean HTML: the XML declaration is suppressed, as are end-tags for the known empty elements.
--omit-xml-declaration
The XML declaration is suppressed.
--method=html
End-tags for the known empty HTML elements are suppressed.
--pyx
Output is in PYX format.
--pyxin
Input is in PYXoid format (need not be well-formed).
--nons
Namespaces are suppressed. Normally, all elements are in the XHTML 1.x namespace, and all attributes are in no namespace.
--nobogons
Bogons (unknown elements) are suppressed. Normally, they are treated as empty.
--nodefaults
suppress default attribute values
--nocolons
change explicit colons in element and attribute names to underscores
--norestart
dont restart any normally restartable elements
--any
Bogons are given a content model of ANY rather than EMPTY.
--lexical
Pass through HTML comments. Has no effect when output is in PYX format.
--reuse
Reuse a single instance of TagSoup parser throughout. Normally, a new one is instantiated for each input file.
--nocdata
Change the content models of the script and style elements to treat them as ordinary #PCDATA (text-only) elements, as in XHTML, rather than with the special CDATA content model.
--encoding=encoding
Specify the input encoding. The default is the Java platform default.
--help
Print help.
--version
Print the version number.
Download (0.050MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
MP3::Tag 0.9709
MP3::Tag is a Perl module for reading tags of MP3 audio files. more>>
MP3::Tag is a Perl module for reading tags of MP3 audio files.
SYNOPSIS
use MP3::Tag;
$mp3 = MP3::Tag->new($filename);
# get some information about the file in the easiest way
($title, $track, $artist, $album, $comment, $year, $genre) = $mp3->autoinfo();
$comment = $mp3->comment();
# or have a closer look on the tags
# scan file for existing tags
$mp3->get_tags;
if (exists $mp3->{ID3v1}) {
# read some information from the tag
$id3v1 = $mp3->{ID3v1}; # $id3v1 is only a shortcut for $mp3->{ID3v1}
print $id3v1->title;
# change the tag contents
$id3v1->all("Song","Artist","Album",2001,"Comment",10,"Top 40");
$id3v1->write_tag;
}
if (exists $mp3->{ID3v2}) {
# read some information from the tag
($name, $info) = $mp3->{ID3v2}->get_frame("TIT2");
# delete the tag completely from the file
$mp3->{ID3v2}->remove_tag;
} else {
# create a new tag
$mp3->new_tag("ID3v2");
$mp3->{ID3v2}->add_frame("TALB", "Album title");
$mp3->{ID3v2}->write_tag;
}
$mp3->close();
<<lessSYNOPSIS
use MP3::Tag;
$mp3 = MP3::Tag->new($filename);
# get some information about the file in the easiest way
($title, $track, $artist, $album, $comment, $year, $genre) = $mp3->autoinfo();
$comment = $mp3->comment();
# or have a closer look on the tags
# scan file for existing tags
$mp3->get_tags;
if (exists $mp3->{ID3v1}) {
# read some information from the tag
$id3v1 = $mp3->{ID3v1}; # $id3v1 is only a shortcut for $mp3->{ID3v1}
print $id3v1->title;
# change the tag contents
$id3v1->all("Song","Artist","Album",2001,"Comment",10,"Top 40");
$id3v1->write_tag;
}
if (exists $mp3->{ID3v2}) {
# read some information from the tag
($name, $info) = $mp3->{ID3v2}->get_frame("TIT2");
# delete the tag completely from the file
$mp3->{ID3v2}->remove_tag;
} else {
# create a new tag
$mp3->new_tag("ID3v2");
$mp3->{ID3v2}->add_frame("TALB", "Album title");
$mp3->{ID3v2}->write_tag;
}
$mp3->close();
Download (0.17MB)
Added: 2007-07-12 License: Perl Artistic License Price:
839 downloads
Tag Guesser 0.1
Tag Guesser script implements a tag guesser, such as the one found in JuK, for amaroK. more>>
Tag Guesser script implements a tag guesser, such as the one found in JuK, for amaroK. Tag Guesser can guess what mp3s tags are based on user supplied formats of the filenames.
This script is not needed for amarok >= 1.4 because the feature is now builtin.
This is the first release, so please send any bug reports or patches to me.
This script probably will work on other versions of software. If you have a patch to make it work on another version, please send it to me.
<<lessThis script is not needed for amarok >= 1.4 because the feature is now builtin.
This is the first release, so please send any bug reports or patches to me.
This script probably will work on other versions of software. If you have a patch to make it work on another version, please send it to me.
Download (0.003MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1108 downloads
gtkid3tag 1.2
gtkid3tag is a small id3 tag editor for both ogg and mp3 files. more>>
gtkid3tag is a small id3 tag editor for both ogg and mp3 files.
gtkid3tag is a really simple tool designed for quick editing of only small amounts of music files. The main feature is that both version 1.1 and version 2 tags can be manipulated and deleted separately.
<<lessgtkid3tag is a really simple tool designed for quick editing of only small amounts of music files. The main feature is that both version 1.1 and version 2 tags can be manipulated and deleted separately.
Download (0.62MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1559 downloads
TagUtil 0.5.1
TagUtil is an easy-to-use tagging utility that enables easy insertion of tags into a blog post. more>>
TagUtil is an easy-to-use tagging utility that enables easy insertion of tags into a blog post. Other facilities offered include: Scheduled Pinging, Support for portable Tag Sources (as RDF files), Facility to create and share such Tag Sources (in RDF format), and Updating of Live Bookmarks for selected Technorati tag searches.
(Note: Core functionality is platform independent. However, some peripheral features that involve file write operations would work only on Windows.)
<<less(Note: Core functionality is platform independent. However, some peripheral features that involve file write operations would work only on Windows.)
Download (0.010MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
870 downloads
uitags 0.6.12
uitags is an open source JSP custom-tag library that makes developing friendly UI effortless. more>>
uitags is an open source JSP custom-tag library that makes developing friendly UI (user interface) effortless. uitags has a unique aim of helping developers create UIs that dont confuse end-users and instead let them work more efficiently.
To find out more, have a quick look at the remaining of this page, and then proceed to the demo site. Consult the Using uitags and Tag Reference pages when youre developing with uitags.
Compatibility note: uitags presently works with IE 6 and Mozilla Firefox 1.x (and possibly with older versions of Firefox).
<<lessTo find out more, have a quick look at the remaining of this page, and then proceed to the demo site. Consult the Using uitags and Tag Reference pages when youre developing with uitags.
Compatibility note: uitags presently works with IE 6 and Mozilla Firefox 1.x (and possibly with older versions of Firefox).
Download (0.26MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1145 downloads
PHP Tag Engine 1.0
PHP Tag Engine is a library that allows you to easily add tagging functionality to a PHP application. more>>
PHP Tag Engine project is a library that allows you to easily add tagging functionality to a PHP application.
Main features:
- PHP Tag Engine has a full AJAX front-end for tagging, as well as methods for programatically adding tags in your code. The front-end tagging interface even has auto-complete functionality using the excellent Yahoo! Auto-Complete library.
- A built-in cache to reduce database queries.
- The PHP Tag Engine code is fully documented in PHP Doc format, and PHP Doc generated documentation is available for download.
- Fully internationalized including Javascript strings. English localization included.
<<lessMain features:
- PHP Tag Engine has a full AJAX front-end for tagging, as well as methods for programatically adding tags in your code. The front-end tagging interface even has auto-complete functionality using the excellent Yahoo! Auto-Complete library.
- A built-in cache to reduce database queries.
- The PHP Tag Engine code is fully documented in PHP Doc format, and PHP Doc generated documentation is available for download.
- Fully internationalized including Javascript strings. English localization included.
Download (0.085MB)
Added: 2007-01-29 License: LGPL (GNU Lesser General Public License) Price:
1006 downloads
GiftTagging 1.2
GiftTagging enables you to tag the things youd like to be given. more>>
GiftTagging enables you to tag the things youd like to be given.
Official extension for the www.gifttagging.com website, which gives you the ability to build an internet wide wish list.
<<lessOfficial extension for the www.gifttagging.com website, which gives you the ability to build an internet wide wish list.
Download (0.018MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
909 downloads
flactagger 3.0.0
flactagger is a simple command line tool to tag FLAC files. more>>
flactagger is a simple command line tool to tag FLAC files. flactagger is a tagger, not a tag editor/viewer.
flactagger is free software licenced under the GNU GPL.
<<lessflactagger is free software licenced under the GNU GPL.
Download (0.020MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
845 downloads
MP3::Tag::Inf 0.9708
MP3::Tag::Inf is a Perl module for parsing .inf files associated with music tracks. more>>
MP3::Tag::Inf is a Perl module for parsing .inf files associated with music tracks.
SYNOPSIS
my $mp3inf = MP3::Tag::Inf->new($filename); # Name of MP3 or .INF file
# or an MP3::Tag::File object
($title, $artist, $album, $year, $comment, $track) = $mp3inf->parse();
see MP3::Tag
MP3::Tag::Inf is designed to be called from the MP3::Tag module.
It parses the content of .inf file (created, e.g., by cdda2wav).
parse()
($title, $artist, $album, $year, $comment, $track) =
$mp3inf->parse($what);
parse_filename() extracts information about artist, title, track number, album and year from the .inf file. $what is optional; it maybe title, track, artist, album, year or comment. If $what is defined parse() will return only this element.
As a side effect of this call, $mp3inf->{info} is set to the hash reference with the content of particular elements of the .inf file. Typically present are the following fields:
CDINDEX_DISCID
CDDB_DISCID
MCN
ISRC
Albumperformer
Performer
Albumtitle
Tracktitle
Tracknumber
Trackstart
Tracklength
Pre-emphasis
Channels
Copy_permitted
Endianess
Index
The following fields are also recognized:
Year
Trackcomment
<<lessSYNOPSIS
my $mp3inf = MP3::Tag::Inf->new($filename); # Name of MP3 or .INF file
# or an MP3::Tag::File object
($title, $artist, $album, $year, $comment, $track) = $mp3inf->parse();
see MP3::Tag
MP3::Tag::Inf is designed to be called from the MP3::Tag module.
It parses the content of .inf file (created, e.g., by cdda2wav).
parse()
($title, $artist, $album, $year, $comment, $track) =
$mp3inf->parse($what);
parse_filename() extracts information about artist, title, track number, album and year from the .inf file. $what is optional; it maybe title, track, artist, album, year or comment. If $what is defined parse() will return only this element.
As a side effect of this call, $mp3inf->{info} is set to the hash reference with the content of particular elements of the .inf file. Typically present are the following fields:
CDINDEX_DISCID
CDDB_DISCID
MCN
ISRC
Albumperformer
Performer
Albumtitle
Tracktitle
Tracknumber
Trackstart
Tracklength
Pre-emphasis
Channels
Copy_permitted
Endianess
Index
The following fields are also recognized:
Year
Trackcomment
Download (0.17MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1079 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above tag search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed