Main > Free Download Search >

Free tags software for linux

tags

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1125
synctags 0.9.9

synctags 0.9.9


synctags is a command-line-program that fetches tags from last.fm. more>>
synctags is a command-line-program that fetches tags from last.fm for the currently playing song in amarok and adds them as labels to the amarok-database.

I will add a context-menu for amarok later

Change tagcount in the script to fit your needs.

<<less
Download (0.010MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
974 downloads
PerlPoint::Tags 0.45

PerlPoint::Tags 0.45


PerlPoint::Tags is a Perl module that can processes PerlPoint tag declarations. more>>
PerlPoint::Tags is a Perl module that can process PerlPoint tag declarations.

SYNOPSIS

# declare a tag declaration package
package PerlPoint::Tags::New;

# declare base "class"
use base qw(PerlPoint::Tags);

PerlPoint is built a modularized way. The base packages provide parsing and stream processing for all translators into target formats and are therefore intended to be as general as possible. Thats why they not even define tags, because every translator author may wish to provide own tags special to the addressed target projector (or format, respectively). On the other hand, the parser needs to know about tags to recognize them correctly. That is where this module comes in. It serves as a base of tag declaration modules by providing a general import() method to be inherited by them. This method scans the invoking module for certain data structures containing tag declarations and imports these data into a structure in its own namespace. The parser knows about this PerlPoint::Tags collection and makes it the base of its tag handling.

It is recommended to have a "top level" tag declaration module for each PerlPoint translator, so there could be a PerlPoint::Tags::HTML, a PerlPoint::Tags::Latex, PerlPoint::Tags::SDF, a PerlPoint::Tags::XML and so on. (These modules of course may simply invoke lower level declarations.)

Note: We are speaking in terms of "classes" here but of course we are actually only using the mechanism of import() together with inheritance to provide an intuitive and easy to use way of declaration.

As an additional feature, the module provides a method addTagSets() to allow translator users to declare tags additionally.

<<less
Download (0.41MB)
Added: 2007-02-13 License: Perl Artistic License Price:
983 downloads
JSP Prize Tags 3.4.0

JSP Prize Tags 3.4.0


JSP Prize Tags is a JSP tag library. The primary tags of Prize Tags are the Tree Tag and Tabbed Pane Tag. more>>
JSP Prize Tags project is a JSP tag library. The primary tags of Prize Tags are the Tree Tag and Tabbed Pane Tag. The Tree Tag makes it easy to implement tree controls in your JSP pages.
The Tabbed Pane Tag makes it easy to implement tabbed panes in your JSP pages. You can put any JSP code inside a tab, and even include other JSPs inside a tab.
The JSP Prize Tags also includes a collection of smaller tag libraries like the icon tag, the alternate tag (for alternating content on the page, such as the background color of table rows or an ad rotator), laying calendar events in a table, and more.
Enhancements:
- This is the stable release of the 3.3.4-beta that was released in March.
- The primary news is the addition of Tree Daos to the Tree Tag, making it easier to create dynamic trees, with content read from either a file system, a database, or other data sources.
<<less
Download (0.15MB)
Added: 2007-05-13 License: The Apache License 2.0 Price:
896 downloads
gst-id3v23-tags 0.0.1

gst-id3v23-tags 0.0.1


gst-id3v23-tags application provides a gstreamer plugin that adds metadata to media files. more>>
gst-id3v23-tags application provides a gstreamer plugin that adds metadata to media files (mainly MP3 audio files) with ID3 version 2.3.0 tags. This information includes elements such as the tracks title, author, performing artist, etc.

Other gstreamer taggers either create ID3 1.0 tags, which have significant limitations, or ID3 2.4 tags, which are not understood by as many MP3 players as ID3 2.3.

The gstreamer framework provides already some ID3 taggers, at least two of them one that encodes the in the version 1.0 and the other in the 2.4. Today most software and hardware mp3 players are able to understand at least one of the two formats. The problem is that not all MP3 players (specially the hardware ones) are able to understand ID3 v2.4 tags and using ID3 v1.0 can have some limitations specially with tags that contain UNICODE characters. Its most likely that today a decent MP3 player will be able to understand ID3 v2.3 tags.

This plugin was written in order to provide an alternative to MP3 players that can understand only ID3 v2.3 tags. This plugin should provide a nicer alternative to the end user over the two existing plugin in the gstreamer framework.

The ID3 v2.3 encoding is actually performed through the library id3lib which is available at http://www.id3lib.org/. The plugin it self depends only on the gstreamer framework (version 0.10) and the library id3lib (version 3.8.3).

To compile do:

make plugin

To install the plugin into your home account (no need to be root) just do:

make install

To use the plugin, just include the element id3v23 in any gstreamer pipeline. Heres an example on how to retag an old MP3 using the command line:

gst-launch filesrc location=a.mp3 ! id3demux ! id3v23 ! filesink location=b.mp3

Heres an example of an gstreamer audio profile used by sound-juiver for
extracting CDs into MP3s:

audio/x-raw-int,rate=44100,channels=2 ! lame mode=0 vbr-quality=6 ! id3v23
<<less
Download (0.013MB)
Added: 2007-07-13 License: LGPL (GNU Lesser General Public License) Price:
836 downloads
Coldtags suite 3.05

Coldtags suite 3.05


The Coldtags suite is a collection of custom JSP tags. more>>
The Coldtags suite is a collection of custom JSP tags that provides 90+ custom JSP tags for common programming tasks faced by JSP developers.
Coldtags suite also includes custom tags similar to the Web controls in the .NET framework.
Enhancements:
- New components were added, so the total amount is over 305 now.
- Features were updated for the existing taglibs, docs, and examples.
- Enhancements were made for many controls.
<<less
Download (MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
861 downloads
PerlPoint::Tags::XML 0.04

PerlPoint::Tags::XML 0.04


PerlPoint::Tags::XML is a PerlPoint tag set used by pp2sdf. more>>
PerlPoint::Tags::XML is a PerlPoint tag set used by pp2sdf.

SYNOPSIS

# declare tags used by pp2sdf
use PerlPoint::Tags::XML;

This module declares PerlPoint tags used by XML converters. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it needs a body and so on. Please see PerlPoint::Tags for a detailed description of tag declaration.

Every PerlPoint translator willing to handle the tags of this module can declare this by using the module in the scope where it built the parser object.

# declare basic tags
use PerlPoint::Tags::XML;

# load parser module
use PerlPoint::Parser;

...

# build parser
my $parser=new PerlPoint::Parser(...);

...

<<less
Download (0.015MB)
Added: 2007-02-20 License: Perl Artistic License Price:
976 downloads
PerlPoint::Tags::SDF 0.45

PerlPoint::Tags::SDF 0.45


PerlPoint::Tags::SDF is a PerlPoint tag set used by pp2sdf. more>>
PerlPoint::Tags::SDF is a PerlPoint tag set used by pp2sdf.

SYNOPSIS

# declare tags used by pp2sdf
use PerlPoint::Tags::SDF;

This module declares PerlPoint tags used by pp2sdf. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it needs a body and so on. Please see PerlPoint::Tags for a detailed description of tag declaration.

Every PerlPoint translator willing to handle the tags of this module can declare this by using the module in the scope where it built the parser object.

# declare basic tags
use PerlPoint::Tags::SDF;

# load parser module
use PerlPoint::Parser;

...

# build parser
my $parser=new PerlPoint::Parser(...);

...

TAGS

PerlPoint::Tags::SDF declares all the tags of PerlPoint::Tags::Basic.

Additionally, the PerlPoint::Tags::HTML tags L, PAGEREF, SECTIONREF, U and XREF tags are supported. pp2sdf might interprete them slightly different to pp2html, please read its documentation for details.

<<less
Download (0.41MB)
Added: 2007-02-14 License: Perl Artistic License Price:
982 downloads
SEO Tool For Meta Tags 1

SEO Tool For Meta Tags 1


SEO Tool For Meta Tags is a small script that instantly generates meta tags for the user. more>>
SEO Tool For Meta Tags is a small script that instantly generates meta tags for the user. It allows you offer a neat little service to your website visitors. They simply sumbit their sites title, description, and keywords & presto, out comes their meta tags to put in their html code.

It takesa about 30 seconds to install and have working on your site.

SEO Tool For Meta Tags does not have any spyware or adware. No personal information is collected, stored, or transmitted by Online Meta Tag Generator. The project does not install any browser plugins or hijackers.
<<less
Download (0.002MB)
Added: 2007-07-30 License: Freeware Price:
856 downloads
PerlPoint::Tags::CPPP 0.39

PerlPoint::Tags::CPPP 0.39


PerlPoint::Tags::CPPP is a PerlPoint tag set used by pp2cppp. more>>
PerlPoint::Tags::CPPP is a PerlPoint tag set used by pp2cppp.

SYNOPSIS

# declare tags used by pp2cppp
use PerlPoint::Tags::CPPP;

This module declares PerlPoint tags used by pp2cppp. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it needs a body and so on. Please see PerlPoint::Tags for a detailed description of tag declaration.

Every PerlPoint translator willing to handle the tags of this module can declare this by using the module in the scope where it built the parser object.

# declare basic tags
use PerlPoint::Tags::CPPP;

# load parser module
use PerlPoint::Parser;

...

# build parser
my $parser=new PerlPoint::Parser(...);

...

TAGS

PerlPoint::Tags::CPPP declares all the tags of PerlPoint::Tags::Basic.

Additionally, the PerlPoint::Tags::HTML tags L and U are supported. pp2cppp might interprete them slightly different to pp2html, please read its documentation for details.

<<less
Download (0.32MB)
Added: 2007-02-15 License: Perl Artistic License Price:
981 downloads
amaroK Last.fm tags 0.1.1

amaroK Last.fm tags 0.1.1


amaroK Last.fm tags script fetches your tags from Last.fm for artists, albums, and tracks. more>>
amaroK Last.fm tags script fetches your tags from Last.fm for artists, albums, and tracks. It stores them as id3v2 COMM tags in your music files and appends them to the comment for the given track in amaroKs collection where they can be used to contruct smart playlists.

So far this script only fetches your tags, it doesnt syncronize changes you make locally back to Last.fm. Probably this feature should wait until the implementation of "labels" which is coming in amaroK 1.5.

Also so far it is only possible to fetch tags for a selection within a playlist. The other context sub-menus just provide helpful messages saying that this feature isnt implimented yet.

As usual this software comes with no warrenty, it might eat your lunch, etc.. That said it works for me.

I owe a large debt of gratitude to Miguel Angel Alvarez whoes amaroK Replaygain script served as the skeleton of this one. Thanks Miguel!

<<less
Download (0.021MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1083 downloads
PerlPoint::Tags::Basic 0.45

PerlPoint::Tags::Basic 0.45


PerlPoint::Tags::Basic is a Perl module that declares basic PerlPoint tags. more>>
PerlPoint::Tags::Basic is a Perl module that declares basic PerlPoint tags.

SYNOPSIS

# declare basic tags
use PerlPoint::Tags::Basic;

This module declares several basic PerlPoint tags. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it needs a body and so on. Please see PerlPoint::Tags for a detailed description of tag declaration.

Every PerlPoint translator willing to handle the tags of this module can declare this by using the module in the scope where it built the parser object.

# declare basic tags
use PerlPoint::Tags::Basic;

# load parser module
use PerlPoint::Parser;

...

# build parser
my $parser=new PerlPoint::Parser(...);

...

It is also possible to select certain declarations.

# declare basic tags
use PerlPoint::Tags::Basic qw(I C);

A set name is provided as well to declare all the flags at once.

# declare basic tags
use PerlPoint::Tags::Basic qw(:basic);

<<less
Download (0.41MB)
Added: 2007-02-15 License: Perl Artistic License Price:
982 downloads
MetaTags Sidebar 1.2.9

MetaTags Sidebar 1.2.9


MetaTags Sidebar provides a sidebar displaying page meta tags and other information. more>>
MetaTags Sidebar provides a sidebar displaying page meta tags and other information.

Sidebar displaying page meta tags and other information. Keywords are numbered and hyperlinked. A must have for keyword optimization etc. Additionally, helps to find pages related to page you browse.

Plus: Integrated with a search engines submission and keyword optimization service.

<<less
Download (0.014MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
933 downloads
Thunar Media Tags Plugin 0.1.2

Thunar Media Tags Plugin 0.1.2


Thunar Media Tags Plugin (thunar-media-tags-plugin) adds special features for media files to the Thunar File Manager. more>>
Thunar Media Tags Plugin (thunar-media-tags-plugin) adds special features for media files to the Thunar File Manager.
Main features:
- a so-called bulk renamer, which allows users to rename multiple audio files at once, based on their tags (e.g. ID3 or OGG/Vorbis),
- a special media file page for the file properties dialog, which displays detailed information about quality, length etc.,
- and finally, an audio tag editor which is reachable from both, renamer and the properties page.
<<less
Download (0.27MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
963 downloads
Ktag 0.5

Ktag 0.5


Ktag aims to be the simpliest tool for editing mp3 and ogg tags. more>>
Ktag is a KDE tool for easy audio tags edition of MP3, OGG and FLAC files.

Ktag supports pictures embeded in ID3V2 tags and comes with a KDE service plugin which can use this picture in Konqueror file preview.

<<less
Download (0.67MB)
Added: 2005-06-15 License: GPL (GNU General Public License) Price:
1591 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