Main > Free Download Search >

Free tag 0.002 software for linux

tag 0.002

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1121
RFID::ISO15693::Tag 0.002

RFID::ISO15693::Tag 0.002


RFID::ISO15693::Tag is an ISO15693 RFID Tag. more>>
RFID::ISO15693::Tag is an ISO15693 RFID Tag.

METHODS

new

Returns a new RFID::ISO15693::Tag object.

combine

Combine two RFID::ISO15693::Tag object and returns

set

Set contents of the tag by a hash.

get

Return contents of the tag as a hash.

getref

Return contents of the tag as a reference of a hash.

pages

Return all pages of bank 0 or bank 1 as a hash.

pagesref

Return all pages of bank 0 or bank 1 as a reference of a hash.

<<less
Download (0.003MB)
Added: 2007-04-18 License: Perl Artistic License Price:
940 downloads
TagFu 0.2

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.

<<less
Download (0.008MB)
Added: 2006-11-19 License: BSD License Price:
1069 downloads
GTag 0.9.2

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.

<<less
Download (0.020MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1555 downloads
Guile 0.002

Guile 0.002


Guile is a Perl interface to the Guile Scheme interpreter. more>>
Guile is a Perl interface to the Guile Scheme interpreter.

SYNOPSIS

use Guile;

print "1 + 1 = ", Guile::eval_str("(+ 1 1)"), "n";

This module provides an interface to the Gnu Guile system. You can find out more about Guile at:

http://www.gnu.org/software/guile/guile.html.

Guile is an interpreter for the Scheme programming language. "Scheme is a statically scoped and properly tail-recursive dialect of the Lisp programming language invented by Guy Lewis Steele Jr. and Gerald Jay Sussman." You can find this quote in the language definition for Scheme here:

http://www-swiss.ai.mit.edu/~jaffer/r5rs_toc.html

This module is being developed in order to support the development and usage of an Inline::Guile module. The intention is to allow Perl programmers to intermix Perl and Guile code in their programs and modules.

<<less
Download (0.028MB)
Added: 2007-05-14 License: Perl Artistic License Price:
915 downloads
FLV::Tag 0.03

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.

<<less
Download (0.72MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1196 downloads
togg 0.2.0

togg 0.2.0


togg is the simple Ogg Vorbis tag editor youve been looking for all these years. more>>
togg project is the simple Ogg Vorbis tag editor youve been looking for all these years. Its syntax is strongly modelled after id3, the command-line ID3 tag editor, in order to allow for easy mass-tagging of your audio files.
In order to work, it requires the vorbiscomment program from vorbis-tools (see http://www.xiph.org/downloads/) to be installed.
For syntax and usage information, please see the man page togg(1).
Enhancements:
- This release fixes a serious bug that would cause havoc when tagging multiple files.
<<less
Download (0.005MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
942 downloads
MP3::Tag 0.9709

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();

<<less
Download (0.17MB)
Added: 2007-07-12 License: Perl Artistic License Price:
839 downloads
Message::Style 0.002

Message::Style 0.002


Message::Style is a Perl module to perform stylistic analysis of messages. more>>
Message::Style is a Perl module to perform stylistic analysis of messages.

SYNOPSIS

use Message::Style;

my $score=Message::Style::score(@article);
# or
my $score=Message::Style::score(@article);

This Perl library does an analysis of a RFC2822 format message (typically email messages or Usenet posts) and produces a score that, in the authors opinion, gives a good indication as to whether the poster is a fsckwit, and therefore whether their message should be ignored.

<<less
Download (0.005MB)
Added: 2006-08-29 License: Perl Artistic License Price:
1153 downloads
flactagger 3.0.0

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.

<<less
Download (0.020MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
845 downloads
AddTraction 0.002

AddTraction 0.002


AddTraction project is a SDL 2-player board game with numbers. more>>
AddTraction project is a SDL 2-player board game with numbers.

Two players ("red" and "green") take their turns on a 6x6 board. In the beginning, the board is empty except for a red "1" in the upper left and a green "1" in the lower right.

Taking a turn means setting one field of the board. Setting a field makes it assume the sum of the points of the 8 surrounding fields. But there is a catch: if the field is of the opponents color, their score is subtracted rather than added. If the resulting score is positive, the field will get your color, else your opponents color.

The same happens to the global score, which is just a colored difference of the score of all fields on the board. If the score in the end is red, red wins. If it is green, green wins. If it is black (0), it is a draw.

<<less
Download (0.053MB)
Added: 2006-11-29 License: GPL (GNU General Public License) Price:
1059 downloads
TagUtil 0.5.1

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
Download (0.010MB)
Added: 2007-06-06 License: MPL (Mozilla Public License) Price:
870 downloads
gtkid3tag 1.2

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.

<<less
Download (0.62MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1559 downloads
Tag Editor 0.6

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
<<less
Download (0.032MB)
Added: 2007-05-29 License: MPL (Mozilla Public License) Price:
542 downloads
tag-not-ed 1.0

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").

<<less
Download (0.023MB)
Added: 2006-02-13 License: GPL (GNU General Public License) Price:
1349 downloads
Tag Soup 1.0.5

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.

<<less
Download (0.050MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5