audiofile info mp3 tag
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2337
AudioFile::Info::MP3::Tag 1.05
AudioFile::Info::MP3::Tag is a Perl extension to get info from MP3 files. more>>
AudioFile::Info::MP3::Tag is a Perl extension to get info from MP3 files.
This is a plugin for AudioFile::Info which uses MP3::Tag to get or set data about MP3 files.
METHODS
new
Creates a new object of class AudioFile::Info::MP3::Tag. Usually called by AudioFile::Info::new.
<<lessThis is a plugin for AudioFile::Info which uses MP3::Tag to get or set data about MP3 files.
METHODS
new
Creates a new object of class AudioFile::Info::MP3::Tag. Usually called by AudioFile::Info::new.
Download (0.003MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1087 downloads
AudioFile::Info 1.08
AudioFile::Info is a Perl extension to get info from audio files. more>>
AudioFile::Info is a Perl extension to get info from audio files.
SYNOPSIS
use AudioFile::Info;
my $song = AudioFile::Info->new($some_mp3_or_ogg_vorbis_file);
print Title: , $song->title, "n",
Artist: , $song->artist, "n".
Album: , $song->album, "n",
Track: , $song->track, "n";
Year: , $song->year, "n",
Genre: , $song->genre, "n";
$song->title(something else); # Changes the title
ABSTRACT
AudioFile::Info is a simple way to get track information out of an audio file. It gives a unified interface for extracting information from both MP3 and Ogg Vorbis files.
Some AudioFile::Info plugins also have the ability to write data back to the file.
<<lessSYNOPSIS
use AudioFile::Info;
my $song = AudioFile::Info->new($some_mp3_or_ogg_vorbis_file);
print Title: , $song->title, "n",
Artist: , $song->artist, "n".
Album: , $song->album, "n",
Track: , $song->track, "n";
Year: , $song->year, "n",
Genre: , $song->genre, "n";
$song->title(something else); # Changes the title
ABSTRACT
AudioFile::Info is a simple way to get track information out of an audio file. It gives a unified interface for extracting information from both MP3 and Ogg Vorbis files.
Some AudioFile::Info plugins also have the ability to write data back to the file.
Download (0.005MB)
Added: 2006-06-23 License: Perl Artistic License Price:
1219 downloads
AudioFile::Info::MP3::ID3Lib 1.05
AudioFile::Info::MP3::ID3Lib is a Perl extension to get info from MP3 files. more>>
AudioFile::Info::MP3::ID3Lib is a Perl extension to get info from MP3 files.
This is a plugin for AudioFile::Info which uses MP3::ID3Lib to get data about MP files.
See AudioFile::Info for more details.
METHODS
new
Creates a new object of class AudioFile::Info::MP3::ID3Lib. Usually called by AudioFile::Info::new.
<<lessThis is a plugin for AudioFile::Info which uses MP3::ID3Lib to get data about MP files.
See AudioFile::Info for more details.
METHODS
new
Creates a new object of class AudioFile::Info::MP3::ID3Lib. Usually called by AudioFile::Info::new.
Download (0.053MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1082 downloads
AudioFile::Info::MP3::Info 1.03
AudioFile::Info::MP3::Info is a Perl extension to get info from MP3 files. more>>
AudioFile::Info::MP3::Info is a Perl extension to get info from MP3 files.
This is a plugin for AudioFile::Info which uses MP3::ID3Lib to get data about MP files.
See AudioFile::Info for more details.
METHODS
new
Creates a new object of class AudioFile::Info::MP3::Info. Usually called by AudioFile::Info::new.
<<lessThis is a plugin for AudioFile::Info which uses MP3::ID3Lib to get data about MP files.
See AudioFile::Info for more details.
METHODS
new
Creates a new object of class AudioFile::Info::MP3::Info. Usually called by AudioFile::Info::new.
Download (0.053MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1087 downloads
Template::Plugin::AudioFile::Info 1.04
Template::Plugin::AudioFile::Info is a template toolkit plugin for AudioFile::Info. more>>
Template::Plugin::AudioFile::Info is a template toolkit plugin for AudioFile::Info.
SYNOPSIS
[% USE song = AudioFile.Info(file) %]
Title: [% song.title %]
Artist: [% song.artist %]
Album: [% song.album %] (track [% song.track %])
Year: [% song.year %]
Genre: [% song.genre %]
ABSTRACT
Template::Plugin::AudioFile::Info is a Template Toolkit plugin module which provides an interface to the AudioFile::Info module. AudioFile::Info provides a simple way to extract various pieces of information from audio files (both MP3 and Ogg Vorbis files).
Template::Plugin::AudioFile::Info is intended to be used from with a template that is going to be processed by the Template Toolkit.
A simple template might look like the one in the Synopsis above. In this case you would need to define the file variable in some way. The simplest option would be to use the tpage program that comes with the Template Toolkit, like this (assuming the template is in a file called song.tt).
$ tpage --define file=some_song.mp3 song.tt
If you wanted to process each file in a directory thne you might write a Perl program that processed the template multiple times like this.
use Template;
my $tt = Template->new;
foreach ( ) {
next unless /.(ogg|mp3)$/i;
$tt->process(song.tt, { file => $_ })
or die $tt->error;
}
There are, of course, many other ways to do it.
<<lessSYNOPSIS
[% USE song = AudioFile.Info(file) %]
Title: [% song.title %]
Artist: [% song.artist %]
Album: [% song.album %] (track [% song.track %])
Year: [% song.year %]
Genre: [% song.genre %]
ABSTRACT
Template::Plugin::AudioFile::Info is a Template Toolkit plugin module which provides an interface to the AudioFile::Info module. AudioFile::Info provides a simple way to extract various pieces of information from audio files (both MP3 and Ogg Vorbis files).
Template::Plugin::AudioFile::Info is intended to be used from with a template that is going to be processed by the Template Toolkit.
A simple template might look like the one in the Synopsis above. In this case you would need to define the file variable in some way. The simplest option would be to use the tpage program that comes with the Template Toolkit, like this (assuming the template is in a file called song.tt).
$ tpage --define file=some_song.mp3 song.tt
If you wanted to process each file in a directory thne you might write a Perl program that processed the template multiple times like this.
use Template;
my $tt = Template->new;
foreach ( ) {
next unless /.(ogg|mp3)$/i;
$tt->process(song.tt, { file => $_ })
or die $tt->error;
}
There are, of course, many other ways to do it.
Download (0.088MB)
Added: 2006-11-14 License: Perl Artistic License Price:
1075 downloads
Yet another MP3 Tool 0.5
YAMT is Yet Another MP3 Tool which helps you to organize your MP3s. more>>
YAMT is Yet Another MP3 Tool which helps you to organize your MP3s. Its a program for GNOME and allows you to edit the ID3 TAG of one MP3 file, change the tag of many files at once and many other.
Main features:
- Editing of single ID3 TAGs
- Rename files based on their ID3 TAGs
- Mass tagging with variables %dir and %file for the current directory and file
- Auto tagging
- Tag exchanging
- Sorting (unsorting) into (from)subdirectories
- Explore your mp3s (with filter ability)
- Create Playlists
Enhancements:
- A log window where YAMTs current activities are shown
- New feature: you may replace eg. ever %20 in filenames with spaces
- Find-feature was restructured and is now named explore
- A popup menu in the edit and explore notebook page (just right-click for it) (If you select an item (eg. mass) the options for this are taken from the appropriate notebook page)
- some documentation (please look at the help menu)
- A progress bar to indicate activity
- "Set" feature renamed to "Auto Tag"
- New option in "Auto Tag": move everything between parantheses to the comment field
- YAMT does not any longer check only for a valid mpeg header since this worked not properly, but also checks for ".mp3" as the extension
- japanese translation
- new logo and icon
- Many bug fixes
<<lessMain features:
- Editing of single ID3 TAGs
- Rename files based on their ID3 TAGs
- Mass tagging with variables %dir and %file for the current directory and file
- Auto tagging
- Tag exchanging
- Sorting (unsorting) into (from)subdirectories
- Explore your mp3s (with filter ability)
- Create Playlists
Enhancements:
- A log window where YAMTs current activities are shown
- New feature: you may replace eg. ever %20 in filenames with spaces
- Find-feature was restructured and is now named explore
- A popup menu in the edit and explore notebook page (just right-click for it) (If you select an item (eg. mass) the options for this are taken from the appropriate notebook page)
- some documentation (please look at the help menu)
- A progress bar to indicate activity
- "Set" feature renamed to "Auto Tag"
- New option in "Auto Tag": move everything between parantheses to the comment field
- YAMT does not any longer check only for a valid mpeg header since this worked not properly, but also checks for ".mp3" as the extension
- japanese translation
- new logo and icon
- Many bug fixes
Download (0.20MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1193 downloads
All System Info
All System Info is a system info SuperKaramba theme. more>>
All System Info is a system info SuperKaramba theme. Simple english version...
It shows:
- System Info
- CPU usage
- Network Usage
- Memory Load
- HDD usage
<<lessIt shows:
- System Info
- CPU usage
- Network Usage
- Memory Load
- HDD usage
Download (0.19MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1210 downloads
Bundle::MP3 1.00
Bundle::MP3 is a bundle to install all MP3-related modules. more>>
Bundle::MP3 is a bundle to install all MP3-related modules.
SYNOPSIS
perl -MCPAN -e install Bundle::MP3
CONTENTS
MP3::Info - For MP3::Info by Chris Sandor
Digest::MD5 - Used by MP3::Napster
MP3::Napster - For MP3::Napster by Lincoln Stein
Bundle::Xmms - For Xmms by Doug MacEachern
This bundle installs a bunch of modules related to sharing and playing MP3 files, including MP3::Info by Chris Sandor, MP3::Napster, by Lincoln Stein, and the Xmms bundle by Doug MacEachern.
<<lessSYNOPSIS
perl -MCPAN -e install Bundle::MP3
CONTENTS
MP3::Info - For MP3::Info by Chris Sandor
Digest::MD5 - Used by MP3::Napster
MP3::Napster - For MP3::Napster by Lincoln Stein
Bundle::Xmms - For Xmms by Doug MacEachern
This bundle installs a bunch of modules related to sharing and playing MP3 files, including MP3::Info by Chris Sandor, MP3::Napster, by Lincoln Stein, and the Xmms bundle by Doug MacEachern.
Download (MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1082 downloads
Audio Tag Tool 0.12.3
Audio Tag Tool is a program to manage the tags in MP3 and Ogg Vorbis files. more>>
Audio Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files, commonly called tags. It is available under the GNU General Public Licence (GPL).
Please send me any comments or bugs you find (email at the bottom)
Tag Tool can be used to edit tags one by one, but the most useful features are the ability to easily tag or rename hundreds of files at once, in any desired format.
The interface is arranged into two sections, with the list of available files on the left and a set of tabs on the right.
Each tab corresponds to one of the main operations Audio Tag Tool can do:
Tag Editor
- Lets you edit the tags individually.
Tag Multiple Files
- Here you can set the tags of multiple files at once. The tag fields can be set to a fixed value, filled in automatically from the files name, or left alone.
Clear Tags
- Allows you to remove the tags from multiple files at once. For MP3 files it lets you choose to remove only ID3v1 or ID3v2 tags.
Move/Rename Multiple Files
- Here you can rename multiple files at once and/or organize them into directories. File names can be based on the contents of the tag.
Create Playlists
- Generates playlists. Playlists can be sorted by file name or by any tag field.
<<lessPlease send me any comments or bugs you find (email at the bottom)
Tag Tool can be used to edit tags one by one, but the most useful features are the ability to easily tag or rename hundreds of files at once, in any desired format.
The interface is arranged into two sections, with the list of available files on the left and a set of tabs on the right.
Each tab corresponds to one of the main operations Audio Tag Tool can do:
Tag Editor
- Lets you edit the tags individually.
Tag Multiple Files
- Here you can set the tags of multiple files at once. The tag fields can be set to a fixed value, filled in automatically from the files name, or left alone.
Clear Tags
- Allows you to remove the tags from multiple files at once. For MP3 files it lets you choose to remove only ID3v1 or ID3v2 tags.
Move/Rename Multiple Files
- Here you can rename multiple files at once and/or organize them into directories. File names can be based on the contents of the tag.
Create Playlists
- Generates playlists. Playlists can be sorted by file name or by any tag field.
Download (0.30MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
972 downloads
AudioFile::Identify::MusicBrainz 0.4
AudioFile::Identify::MusicBrainz is a pure-perl MusicBrainz client implementation. more>>
AudioFile::Identify::MusicBrainz is a pure-perl MusicBrainz client implementation.
A::I::M is, at heart, a pure-perl implementation of the MusicBrainz client protocol, encapsulated in some sensible Track/Album/Artist objects that have the sort of methods youd expect. So I can, given a Track object, go
my $some_title = $track->album->track(4)->artist->title;
Eventually, this is intended to be merely a plugin to a more general AudioFile::Identify architecture, along with such exciting things as A::I::Amazon, A::I::CDDB, etc, but until theyre ready and we have a decent API for it, its useful to have this out in the wild, as its very useful.
USAGE
See AudioFile::Identify::MusicBrainz::Query for details, but in summary:
use AudioFile::Identify::MusicBrainz::Query;
my $query = AudioFile::Identify::MusicBrainz::Query->new();
$query->FileInfoLookup(
artist => coldplay,
title => yellow,
items => 5,
) or die "Could not query: " . $query->error();
print "I got ".scalar(@{$query->results})." resultsn";
print "Most likely album is ".
$query->result(0)->album->title ."n";
print "Most likely trackNum is ".
$query->result(0)->track->trackNum ."n";
See AudioFile::Identify::MusicBrainz::Album, AudioFile::Identify::MusicBrainz::Artist and AudioFile::Identify::MusicBrainz::Track for details of the methods you can call on these returned objects.
Theres an example of its use in the examples folder in the tarball, tagger.pl (see tagger.pl). This is a utility that examines the ID3 tags of an MP3 file, and will print what MusicBrainz suggests for the rest of the tags.
<<lessA::I::M is, at heart, a pure-perl implementation of the MusicBrainz client protocol, encapsulated in some sensible Track/Album/Artist objects that have the sort of methods youd expect. So I can, given a Track object, go
my $some_title = $track->album->track(4)->artist->title;
Eventually, this is intended to be merely a plugin to a more general AudioFile::Identify architecture, along with such exciting things as A::I::Amazon, A::I::CDDB, etc, but until theyre ready and we have a decent API for it, its useful to have this out in the wild, as its very useful.
USAGE
See AudioFile::Identify::MusicBrainz::Query for details, but in summary:
use AudioFile::Identify::MusicBrainz::Query;
my $query = AudioFile::Identify::MusicBrainz::Query->new();
$query->FileInfoLookup(
artist => coldplay,
title => yellow,
items => 5,
) or die "Could not query: " . $query->error();
print "I got ".scalar(@{$query->results})." resultsn";
print "Most likely album is ".
$query->result(0)->album->title ."n";
print "Most likely trackNum is ".
$query->result(0)->track->trackNum ."n";
See AudioFile::Identify::MusicBrainz::Album, AudioFile::Identify::MusicBrainz::Artist and AudioFile::Identify::MusicBrainz::Track for details of the methods you can call on these returned objects.
Theres an example of its use in the examples folder in the tarball, tagger.pl (see tagger.pl). This is a utility that examines the ID3 tags of an MP3 file, and will print what MusicBrainz suggests for the rest of the tags.
Download (0.028MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1074 downloads
Video::Info 0.993
Video::Info can retrieve video properties such as: height width codec fps. more>>
Video::Info can retrieve video properties such as: height width codec fps.
SYNOPSIS
use Video::Info;
my $info = Video::Info->new(-file=>my.mpg);
$info->fps();
$info->aspect();
## ... see methods below
Video::Info is a factory class for working with video files. When you create a new Video::Info object (see methods), something like this will happen: 1) open file, determine type. See Video::Info::Magic. 2) attempt to create object of appropriate class (ie, MPEG::Info for MPEG files, RIFF::Info for AVI files). 3) Probe the file for various attributes 4) return the created object, or a Video::Info object if the appropriate class is unavailable.
Currently, Video::Info can create objects for the following filetypes:
Module Filetype
-------------------------------------------------
Video::Info::ASF ASF
MP3::Info MPEG Layer 2, MPEG Layer 3
Video::Info::MPEG MPEG1, MPEG2, MPEG 2.5
Video::Info::RIFF AVI, DivX
Video::Info::Quicktime MOV, MOOV, MDAT, QT
And support is planned for:
Module Filetype
-------------------------------------------------
Video::Info::Real RealNetworks formats
<<lessSYNOPSIS
use Video::Info;
my $info = Video::Info->new(-file=>my.mpg);
$info->fps();
$info->aspect();
## ... see methods below
Video::Info is a factory class for working with video files. When you create a new Video::Info object (see methods), something like this will happen: 1) open file, determine type. See Video::Info::Magic. 2) attempt to create object of appropriate class (ie, MPEG::Info for MPEG files, RIFF::Info for AVI files). 3) Probe the file for various attributes 4) return the created object, or a Video::Info object if the appropriate class is unavailable.
Currently, Video::Info can create objects for the following filetypes:
Module Filetype
-------------------------------------------------
Video::Info::ASF ASF
MP3::Info MPEG Layer 2, MPEG Layer 3
Video::Info::MPEG MPEG1, MPEG2, MPEG 2.5
Video::Info::RIFF AVI, DivX
Video::Info::Quicktime MOV, MOOV, MDAT, QT
And support is planned for:
Module Filetype
-------------------------------------------------
Video::Info::Real RealNetworks formats
Download (0.62MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1197 downloads
randoMp3 2.1
randoMp3 is a small Perl script that generates playlists for XMMS. more>>
randoMp3 is a small Perl script that generates playlists for XMMS. randoMp3 script is given the number of entries that should be in the playlist, and then it searches the filesystem for MP3s and randomly selects MP3s to include.
You also can enter a time limit, which causes the script to stop selecting MP3s when the total playing time of all selected MP3 is approximately equal to the given time limit (+/- 4min).
to run the script you have to install the module MP3::Info. You can do this by typing:
$perl -MCPAN -e install MP3::Info
Options:
randomp3.pl -f playlistname -d directory [-t time] [-n number] [-h help]
-f choosen playlistname
-d root directory for mp3s. e.g. /mp3s/
-t the time you want to listen. input in minutes. e.g. 15
-n number of files you want in youre playlist. e.g. 30
-h print help dialog.
you must start the program with -n OR -t
you cannot use both parameters together.
<<lessYou also can enter a time limit, which causes the script to stop selecting MP3s when the total playing time of all selected MP3 is approximately equal to the given time limit (+/- 4min).
to run the script you have to install the module MP3::Info. You can do this by typing:
$perl -MCPAN -e install MP3::Info
Options:
randomp3.pl -f playlistname -d directory [-t time] [-n number] [-h help]
-f choosen playlistname
-d root directory for mp3s. e.g. /mp3s/
-t the time you want to listen. input in minutes. e.g. 15
-n number of files you want in youre playlist. e.g. 30
-h print help dialog.
you must start the program with -n OR -t
you cannot use both parameters together.
Download (0.003MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1283 downloads
Mp3tag 1.4
Mp3tag is an Objective-Caml library which can be used in other tools to read, write or graphically edit tags. more>>
Mp3tag is an Objective-Caml library which can be used in other tools to read, write or graphically edit tags (v1 or v2) in mp3 files.
mp3tag library comes with the mp3tag and cddbtag example tools.
The mp3tag tool included can be used to modify tags in mp3 files, or rename files according to tags.
The cddbtag tool included can be used to modify tags in mp3 files, by using a CDDB server to get artist, album and tracks corresponding to the given mp3 files.
The mp3tag tool
The mp3tag tool included can be used to modify tags in mp3 files, or rename files according to tags. Here are some examples of usage:
mp3tag file_1.mp3 ... file_n.mp3
Print tags of the given files.
mp3tag -a "Les Cowboys Fringants" -l "Attache ta tuque" *.mp3
Set artist and album tags in all mp3 files of the current directory.
mp3tag -a "Les Cowboys Fringants" -l "Attache ta tuque" -t "Toune dautomne" -n 11 -g 102 file.mp3
Set artist, album, title, track number and genre tags in file.mp3.
mp3tag -e file_1.mp3 ... file_n.mp3
Graphically edit tags in each given file.
mp3tag -r file_1.mp3 ... file_n.mp3
Rename the given files according to their tags, with the default name format.
mp3tag -r -f 1 file_1.mp3 ... file_n.mp3
Rename the given files according to their tags, with the predefined format "1".
mp3tag --formats
Print the list of predefined renaming formats.
mp3tag -F "%n - %t" file_1.mp3 ... file_n.mp3
Rename the given files according to their tags with the given format. Here, each file will be renamed as < track number > - < title >.mp3. Where to use values of tags in a format is specified by %a, %t, %l, %n, %g, %c, %y.
mp3tag --copy -t "Le plombier" file1.mp3 file2.mp3
Copy tags from file1.mp3 to file2.mp3, but with a different title tag.
The cddbtag tool
The cddbtag tool included can be used to modify tags in mp3 files, by using a CDDB server to get artist, album and tracks corresponding to the given mp3 files. Here are some examples of usage:
cddbtag file_01.mp3 file_02.mp3 ... file_n.mp3
Use the given files, in the given order, to build the discid, then query the CDDB server and, if information could be retrieved, set tags in the given .mp3 files.
cddbtag -t file_01.mp3 file_02.mp3 ... file_n.mp3
Same as above but run in test mode: it prints the information retrieved but does not write tags in the files.
cddbtag -s mycddbserver.org -p 4000 file_01.mp3 file_02.mp3 ... file_n.mp3
Here we specify a different CDDB server and port to connect to.
<<lessmp3tag library comes with the mp3tag and cddbtag example tools.
The mp3tag tool included can be used to modify tags in mp3 files, or rename files according to tags.
The cddbtag tool included can be used to modify tags in mp3 files, by using a CDDB server to get artist, album and tracks corresponding to the given mp3 files.
The mp3tag tool
The mp3tag tool included can be used to modify tags in mp3 files, or rename files according to tags. Here are some examples of usage:
mp3tag file_1.mp3 ... file_n.mp3
Print tags of the given files.
mp3tag -a "Les Cowboys Fringants" -l "Attache ta tuque" *.mp3
Set artist and album tags in all mp3 files of the current directory.
mp3tag -a "Les Cowboys Fringants" -l "Attache ta tuque" -t "Toune dautomne" -n 11 -g 102 file.mp3
Set artist, album, title, track number and genre tags in file.mp3.
mp3tag -e file_1.mp3 ... file_n.mp3
Graphically edit tags in each given file.
mp3tag -r file_1.mp3 ... file_n.mp3
Rename the given files according to their tags, with the default name format.
mp3tag -r -f 1 file_1.mp3 ... file_n.mp3
Rename the given files according to their tags, with the predefined format "1".
mp3tag --formats
Print the list of predefined renaming formats.
mp3tag -F "%n - %t" file_1.mp3 ... file_n.mp3
Rename the given files according to their tags with the given format. Here, each file will be renamed as < track number > - < title >.mp3. Where to use values of tags in a format is specified by %a, %t, %l, %n, %g, %c, %y.
mp3tag --copy -t "Le plombier" file1.mp3 file2.mp3
Copy tags from file1.mp3 to file2.mp3, but with a different title tag.
The cddbtag tool
The cddbtag tool included can be used to modify tags in mp3 files, by using a CDDB server to get artist, album and tracks corresponding to the given mp3 files. Here are some examples of usage:
cddbtag file_01.mp3 file_02.mp3 ... file_n.mp3
Use the given files, in the given order, to build the discid, then query the CDDB server and, if information could be retrieved, set tags in the given .mp3 files.
cddbtag -t file_01.mp3 file_02.mp3 ... file_n.mp3
Same as above but run in test mode: it prints the information retrieved but does not write tags in the files.
cddbtag -s mycddbserver.org -p 4000 file_01.mp3 file_02.mp3 ... file_n.mp3
Here we specify a different CDDB server and port to connect to.
Download (0.048MB)
Added: 2006-03-16 License: LGPL (GNU Lesser General Public License) Price:
9862 downloads
Sort MP3 0.1
Sort MP3 is a script was made to help in organizing MP3s. more>>
Sort MP3 is a script was made to help in organizing MP3s. If you have one directory with allot of mp3s and the names are not very readable you can run this script against them. It will read the id tag of a mp3 and rename the file to the title of the song but with _ instead of spaces. It can also create a directory structure from the id tag if the -c option is used. The structure will be put in the same directory the mp3s are in. It will be something like: "/BANDNAME/CDTITLE/SONG.mp3"
Usage: sort_mp3.pl [options]
Options should be separated by a space and my be
in any order.
-c Create a directory structure from the mp3 tag.
It is made inside the directory holding the un-named mp3s.
If not set the files will just be renamed.
Example: "/BANDNAME/CDTITLE/SONG.mp3"
-d= Path to the directory where mp3s can be found.
There should be no / at the end and no spaces.
Example: "-d=/unsorted_mp3s"
<<lessUsage: sort_mp3.pl [options]
Options should be separated by a space and my be
in any order.
-c Create a directory structure from the mp3 tag.
It is made inside the directory holding the un-named mp3s.
If not set the files will just be renamed.
Example: "/BANDNAME/CDTITLE/SONG.mp3"
-d= Path to the directory where mp3s can be found.
There should be no / at the end and no spaces.
Example: "-d=/unsorted_mp3s"
Download (0.002MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1196 downloads
Template::Plugin::MP3::Tag 0.01
Template::Plugin::MP3::Tag is a Perl interface to the MP3::Tag Module. more>>
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.
<<lessSYNOPSIS
[% 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.
Download (0.004MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1082 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 audiofile info mp3 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