WareSeeker Search Software

unicode mp3 tag


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

MP3::Tag 0.9709


linux Programming->Libraries Free
View Detail
Download MP3::Tag 0.9709Download MP3::Tag 0.9709
0.17 MB
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();


2

MP3::Tag::ID3v2 0.9708


linux Programming->Libraries Free
View Detail
Download MP3::Tag::ID3v2 0.9708Download MP3::Tag::ID3v2 0.9708
0.17 MB
MP3::Tag::ID3v2 is a Read / Write ID3v2.x.y tags from mp3 audio files.

SYNOPSIS

MP3::Tag::ID3v2 supports * Reading of ID3v2.2.0 and ID3v2.3.0 tags (some ID3v2.4.0 frames too) * Writing of ID3v2.3.0 tags

MP3::Tag::ID3v2 is designed to be called from the MP3::Tag module.

use MP3::Tag;
$mp3 = MP3::Tag->new($filename);

# read an existing tag
$mp3->get_tags();
$id3v2 = $mp3->{ID3v2} if exists $mp3->{ID3v2};

# or create a new tag
$id3v2 = $mp3->new_tag("ID3v2");

See MP3::Tag for information on the above used functions.

* Reading a tag

$frameIDs_hash = $id3v2->get_frame_ids(truename);

foreach my $frame (keys %$frameIDs_hash) {
my ($name, @info) = $id3v2->get_frame($frame);
for my $info (@info) {
if (ref $info) {
print "$name ($frame):n";
while(my ($key,$val)=each %$info) {
print " * $key => $valn";
}
} else {
print "$name: $infon";
}
}
}
* Adding / Changing / Removing / Writing a tag
$id3v2->add_frame("TIT2", "Title of the song");
$id3v2->change_frame("TALB","Greatest Album");
$id3v2->remove_frame("TLAN");
$id3v2->write_tag();
* Removing the whole tag
$id3v2->remove_tag();
* Get information about supported frames
%tags = $id3v2->supported_frames();
while (($fname, $longname) = each %tags) {
print "$fname $longname: ",
join(", ", @{$id3v2->what_data($fname)}), "n";
}


3

MP3-tag 2.5


windows Audio Multimedia->Audio Management $29.95
View Detail
Download MP3-tag 2.5Download MP3-tag 2.5
1.89MB
MP3-tag is not just yet another audio file tag editor. It is a powerful music collection organizer, audio file search system, personal DJ and more.

MP3-tag is a great tool for editing data tags in sound files of any format. You can work with several files simultaneously or change the tags for all files in a selected folder at once.

MP3-tag is well-suited for bringing order to folders containing hundreds of audio files. The program can download audio track data (author, album, date, genre etc.) from the FreeDB online database. Thus, each file in your audio collection will contain full information about its content. MP3-tag can rename files and folders according to specified rules using the tag information, so that all audio files will have standard names to guarantee order and convenience.

MP3-tags unique feature is a mass search for albums in the Internet. If you have albums of your favorite artists on your computer, MP3-tag will detect them and prompt you to download tags for all tracks at once - a very useful function for true audiophiles. It will let you bring order to your huge audio collection with a few mouse clicks.

In addition, MP3-tag can create playlists for use by software and audio players - a great solution for compiling background music, an audio disk for a car, a party disk or even a radio broadcast. Also, MP3-tag can find audio files on your system according to tags you specify and control WinAmp directly from the program.

MP3-tag features an easy-to-use explorer-like interface and flexible configuration options that make it convenient and easy to use for both newbies and professional audio editors alike.
4

MP3-tag 2.5


windows Audio Multimedia->MP3 Tools $29.95
View Detail
Download MP3-tag 2.5Download MP3-tag 2.5
1.9 MB
MP3-tag is not just yet another audio file tag editor. It is a powerful music collection organizer, audio file search system, personal DJ and more. MP3-tag is a great tool for editing data tags in sound files of any format. You can work with several files simultaneously or change the tags for all files in a selected folder at once.
5

Template::Plugin::MP3::Tag 0.01


linux Programming->Libraries Free
View Detail
Download Template::Plugin::MP3::Tag 0.01Download Template::Plugin::MP3::Tag 0.01
0.004 MB
Template::Plugin::MP3::Tag is a Perl interface to the MP3::Tag Module.

SYNOPSIS

[% USE tag = MP3("path_to_mp3_file") %]

[% tag.title %]
[% tag.album %]

# perldoc MP3::Tag for more ideas

Template::Plugin::MP3::Tag provides a simple wrapper for using MP3::Tag in object oriented mode; see MP3::Tag for more details.

Although Template::Plugin::MP3 can fetch MP3 files, but it Supports only ID3v1. When you have to fetch MP3 files ID3v2, I recommend you to use this module.


6

MP3::Tag::LastResort 0.9708


linux Programming->Libraries Free
View Detail
Download MP3::Tag::LastResort 0.9708Download MP3::Tag::LastResort 0.9708
0.17 MB
MP3::Tag::LastResort is a Perl module for using other fields to fill autoinfo fields.

SYNOPSIS

my $mp3extra = MP3::Tag::LastResort::new_with_parent($filename, $parent);
$comment = $mp3inf->comment();

see MP3::Tag

MP3::Tag::LastResort is designed to be called from the MP3::Tag module.
It uses the artist_collection() as comment() if comment() is not otherwise defined.


7

Mp3 Tag Tools 1.2


windows Audio Multimedia->MPEG Audio Players and Editors Free
View Detail
Download Mp3 Tag Tools 1.2Download Mp3 Tag Tools 1.2
187K
Mp3 Tag Tools v1.2 (C) 2002 John George K. is a free, intutive ID3v1.1 and ID3v2.x mp3 tag editing utility, with several features such
as Mass Tagging, Write Tags from Filenames and Rename Files From Tags using Custom Formats , Cleaning Filenames and
Correcting their case, Get Tag info using Directory Formats, Create Directories and organize mp3s from tag info, Lyrics and Picture
Tagging, accurately read all MPEG info and append bitrate and mode to filenames. All these tag operations can be carried out with
or without directory recursion.

8

Mp3 Tag Assistant 2.1


windows Audio Multimedia->Other $19.95
View Detail
Download Mp3 Tag Assistant 2.1Download Mp3 Tag Assistant 2.1
3144K
Mp3 Tag Assistant - effective editor of mp3 tags, playlist/filelist generator and music file manager.

Using Mp3 Tag Assistant, you can change tags for a large or very large list of music files. You can first change the data virtually, while the program will save all those changes to files afterwards. You will also be able to make the filenames the way you want them, create playlists/filelists, copy the changed files to the folders with your favorite music and other. The program has some unique features for editing large file lists. The program makes it possible to maximally automate the process of editing tags and other operations with music files.

The program has a customizable functional interface, supports various languages. To master the program quickly, you can take a short visual course on working with the program.

Features:

* Supported more 35 mp3 tags.
* Supported UNICODE symbols in mp3 tags. You can use symbols of your national alphabet in mp3 tags (diacritic symbols, umlauts, hieroglyphs, etc).
* Supported ID3v1 and ID3v2 mp3 tags.
* Using Actions and custom Action Sets for processing a large list of mp3 files.
* Edit, delete, copy, paste the tags of mp3 files.
* Generate filenames using the information from tags using templates.
* Generate tags from filenames and folder names using templates.
* Generate CSV, TXT, XML filelists.
* Generate M3U, PLS playlist.
* Copy/Move original and result files.
* Supported multi line comments and lyrics.
* Supported multi languages interface.
* Short visual training course of how work with the program.
* Wizard to help edit mp3 files.
* Automatic log changes of files.
* Visual tag editing.
* Manual sorting mode.
* Advanced Drag and Drop functions.
* Support all OS Windows.
* Integration with Winamp 2.x/5.x and a built-in Mp3 player.

Mp3 Tag Assistant is not just an mp3 tag editor, but something more sophisticated. Try and see it for yourself!

9

MP3-tag 1.1


windows Audio Multimedia->Audio Plugins $29.95 to buy
View Detail
Download MP3-tag 1.1Download MP3-tag 1.1
1.74 MB
MP3-tag 1.1 - is powerful tags editor software for MP3 and other audio files. The program allows you to create play lists, rename files, organize folders, export data to different formats, and more.
10

MP3 Tag Clinic


script Flash Free
View Detail
Download MP3 Tag ClinicDownload MP3 Tag Clinic
MP3 Tag Clinics unique spreadsheet-like design maximizes the methods available for editing tags. While placed in full fiew and editable field-by-field individually, they are also made available to a wide range of auto-editing tools and features that are as close as your mouse. Custom combinations of whole tags or tag fields can be easily selected to have the same automated editing function applied to all of them at one time.
11

MP3 Tag Editor 1.2


windows Audio Multimedia->Tag Editors Free
View Detail
Download MP3 Tag Editor 1.2Download MP3 Tag Editor 1.2
44 KB
ZI MP3 Tag Editor description
MP3 Tag Editor saves time by allowing you to update an entire MP3 folder at once. Often times, CD ripping software, or websites offering MP3s, dont include the correct ID3 Tag information.

With the advent of car CD players that can play MP3s, this can be quite annoying.


MP3 Tag Editor was written to fix the incorrect Tag information found in MP3 files.

MP3 Tag Editor will save you precious time by allowing you to update an entire MP3 folder at once.

Here are some key features of "ZI MP3 Tag Editor":

· File to Tag
· Remove %20
· Tag to File
· Update All Tags

12

MP3-Tag-Editor 3.11


windows Audio Multimedia->MP3 Tools Free
View Detail
Download MP3-Tag-Editor 3.11Download MP3-Tag-Editor 3.11
1.1 MB
The MP3-Tag-Editor is a tool to modify the track information of mp3 files in a fast and simple manner. Supported is the ID3v1 and ID3v2 standard. Furthermore the MP3-Tag-Editor has a lot of features which ease the mp3 management.
13

MP3::Tag::File 0.9708


linux Programming->Libraries Free
View Detail
Download MP3::Tag::File 0.9708Download MP3::Tag::File 0.9708
0.17 MB
MP3::Tag::File is a Perl module for reading / writing files.

SYNOPSIS

my $mp3 = MP3::Tag->new($filename);

($title, $artist, $no, $album, $year) = $mp3->parse_filename();
see MP3::Tag

MP3::Tag::File is designed to be called from the MP3::Tag module.
It offers possibilities to read/write data from files via read(), write(), truncate(), seek(), tell(), open(), close(); one can find the filename via the filename() method.
parse_filename()

($title, $artist, $no, $album, $year) = $mp3->parse_filename($what, $filename);

parse_filename() tries to extract information about artist, title, track number, album and year from the filename. (For backward compatibility it may be also called by deprecated name read_filename().)

This is likely to fail for a lot of filenames, especially the album will be often wrongly guessed, as the name of the parent directory is taken as album name.

$what and $filename are optional. $what maybe title, track, artist, album or year. If $what is defined parse_filename() will return only this element.

If $filename is defined this filename will be used and not the real filename which was set by MP3::Tag with MP3::Tag-new($filename)>. Otherwise the actual filename is used (subject to configuration variable decode_encoding_filename).

Following formats will be hopefully recognized:

- album name/artist name - song name.mp3
- album_name/artist_name-song_name.mp3
- album.name/artist.name_song.name.mp3
- album name/(artist name) song name.mp3
- album name/01. artist name - song name.mp3
- album name/artist name - 01 - song.name.mp3

If artist or title end in (NUMBER) with 4-digit NUMBER, it is considered the year.
title()

$title = $mp3->title($filename);

Returns the title, guessed from the filename. See also parse_filename(). (For backward compatibility, can be called by deprecated name song().)

$filename is optional and will be used instead of the real filename if defined.

artist()

$artist = $mp3->artist($filename);

Returns the artist name, guessed from the filename. See also parse_filename()

$filename is optional and will be used instead of the real filename if defined.

track()

$track = $mp3->track($filename);

Returns the track number, guessed from the filename. See also parse_filename()

$filename is optional and will be used instead of the real filename if defined.

year()

$year = $mp3->year($filename);

Returns the year, guessed from the filename. See also parse_filename()

$filename is optional and will be used instead of the real filename if defined.

album()

$album = $mp3->album($filename);

Returns the album name, guessed from the filename. See also parse_filename() The album name is guessed from the parent directory, so it is very likely to fail.

$filename is optional and will be used instead of the real filename if defined.
comment()

$comment = $mp3->comment($filename); # Always undef

genre()

$genre = $mp3->genre($filename); # Always undef


14

MP3 Tag Xpress 1.0


windows Audio Multimedia->Other Free
View Detail
Download MP3 Tag Xpress 1.0Download MP3 Tag Xpress 1.0
1,936K
Easily create ID3 tags for your MP3 files. Automatically rename MP3 files based upon the ID3 Tag. Easy to navigate from folder to folder. Clean up unwanted tag fields from existing MP3 files. Auto-Advance feature automatically moves to the next file when a tag is created or updated.

15

MP3 Tag Editor 3


windows Audio Multimedia->Audio Management $29.95
View Detail
Download MP3 Tag Editor 3Download MP3 Tag Editor 3
526KB

MP3 Tag Editor is not just yet another music file tag editor. It is a powerful music collection organizer, audio file search system, personal DJ and more.

MP3 Tag Editor is a great tool for editing data tags in sound files of any format. You can work with several files simultaneously or change the tags for all files in a selected folder at once.
MP3 Tag Editor is well-suited for bringing order to folders containing hundreds of music files. The program can download audio track data (author, album, date, genre etc.) from the FreeDB online database. Thus, each file in your music collection will contain full information about its content. MP3-tag can rename files and folders according to specified rules using the tag information, so that all music files will have standard names to guarantee order and convenience.

In addition, MP3 Tag Editor can create playlists for use by software and music players - a great solution for compiling background music, an audio disk for a car, a party disk or even a radio broadcast. Also, MP3-tag can find music files on your system according to tags you specify and control WinAmp directly from the program.

MP3 Tag Editors unique feature is a mass search for albums in the Internet. If you have albums of your favorite artists on your computer, MP3-tag will detect them and prompt you to download tags for all tracks at once - a very useful function for true audiophiles. It will let you bring order to your huge music collection with a few mouse clicks.

MP3 Tag Editor features an easy-to-use explorer-like interface and flexible configuration options that make it convenient and easy to use for both newbies and professional music editors alike.
16

MP3-tag 2.1.0


windows Audio Multimedia->Sound Event Editors $29.95
View Detail
Download MP3-tag 2.1.0Download MP3-tag 2.1.0
1926K
MP3-tag is not just yet another audio file tag editor. It is a powerful music collection organizer, audio file search system, personal DJ and more.

MP3-tag is a great tool for editing data tags in sound files of any format. You can work with several files simultaneously or change the tags for all files in a selected folder at once.

MP3-tag is well-suited for bringing order to folders containing hundreds of audio files. The program can download audio track data (author, album, date, genre etc.) from the FreeDB online database. Thus, each file in your audio collection will contain full information about its content. MP3-tag can rename files and folders according to specified rules using the tag information, so that all audio files will have standard names to guarantee order and convenience.

MP3-tags unique feature is a mass search for albums in the Internet. If you have albums of your favorite artists on your computer, MP3-tag will detect them and prompt you to download tags for all tracks at once - a very useful function for true audiophiles. It will let you bring order to your huge audio collection with a few mouse clicks.

In addition, MP3-tag can create playlists for use by software and audio players - a great solution for compiling background music, an audio disk for a car, a party disk or even a radio broadcast. Also, MP3-tag can find audio files on your system according to tags you specify and control WinAmp directly from the program.

MP3-tag features an easy-to-use explorer-like interface and flexible configuration options that make it convenient and easy to use for both newbies and professional audio editors alike.

17

MP3::Tag::Inf 0.9708


linux Programming->Libraries Free
View Detail
Download MP3::Tag::Inf 0.9708Download MP3::Tag::Inf 0.9708
0.17 MB
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


18

Simple MP3 Tag Editor 1.3


windows Audio Multimedia->Tag Editors Free
View Detail
Download Simple MP3 Tag Editor 1.3Download Simple MP3 Tag Editor 1.3
594 KB
Simple MP3 Tag Editor is a useful and intuitive MP3 tag editor.

Simple MP3 Tag Editor supports id3v1 and id3v2 MP3 tags, features drag and drop interface and is capable of editing single or multiple MP3 files. You may easily view or change song title, album and artist name, year, music genre, custom comments and much more.

19

Audio MP3 ID3 Tag Editor 1.0


windows Audio Multimedia->Rippers Encoders $13 to buy
View Detail
Download Audio MP3 ID3 Tag Editor 1.0Download Audio MP3 ID3 Tag Editor 1.0
762 KB
Audio MP3 ID3 Tag Editor 1.0 - supports to edit MP3 ID3 V1 Tag and MP3 ID3 V2 Tag. With this software, you may edit MP3 ID3 Tag V1 includes "Title", "Artist", "Album", "Year", "Genre", "Comment" and "Track". And you may edit MP3 ID3 Tag V1 includes "Title", "Composer", "Artist", "Original Artist", "Album", "Copyright", "Year", "Genre", "Encoder", "URL", "Track", "Lyrics", "User Text", "Artist URL", "Preference", "Mood", "Tempo" and "Situation". The
20

MP3::Tag::ID3v2-Data 0.9708


linux Programming->Libraries Free
View Detail
Download MP3::Tag::ID3v2-Data 0.9708Download MP3::Tag::ID3v2-Data 0.9708
0.17 MB
MP3::Tag::ID3v2-Data can get_frame() data format and supported frames.

SYNOPSIS

$mp3 = MP3::Tag->new($filename);
$mp3->get_tags();
$id3v2 = $mp3->{ID3v2} if exists $mp3->{id3v2};

($info, $long) = $id3v2->get_frame($id); # or

($info, $long) = $id3v2->get_frame($id, raw);

This document describes how to use the results of the get_frame function of MP3::Tag::ID3v2, thus the data format of frames retrieved with MP3::Tag::ID3v2::get_frame().

It contains also a list of all supported ID3v2-Frames.

get_frame()
($info, $long) = $id3v2->get_frame($id); # or

($info, $long) = $id3v2->get_frame($id, raw);

$id has to be a name of a frame like "APIC". See also L mp3::tag::id3v2> mp3::tag::id3v2> .

The names of all frames found in a tag can be retrieved with the L mp3::tag::id3v2> mp3::tag::id3v2> function.


My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search