MP3::ID3Lib 0.12 review

Download
by rbytes.net on

MP3::ID3Lib is a Perl module for ID3v1/ID3v2 Tagging of MP3 files. SYNOPSIS use MP3::ID3Lib; my $id3 = MP3::ID3Lib->new($f

License: Perl Artistic License
File size: 36K
Developer: Leon Brocard
0 stars award from rbytes.net

MP3::ID3Lib is a Perl module for ID3v1/ID3v2 Tagging of MP3 files.

SYNOPSIS

use MP3::ID3Lib;
my $id3 = MP3::ID3Lib->new($filename);

foreach my $frame (@{$id3->frames}) {
my $code = $frame->code;
my $description = $frame->description;
my $value = $frame->value;
$frame->set("Orange") if $code eq 'TPE1';
print "$description: $valuen";
}

$id3->add_frame("TIT2", "Title goes here");
$id3->commit;

This module allows you to edit and add ID3 tags in MP3 files.
ID3 tags are small pieces of information stored inside the MP3 file. They can contain bits of metadata about the MP3, such as album name, song name, artist, original artist, genre, composer, year of release, additional comment fields, and many more.

Requirements:
Perl

MP3::ID3Lib 0.12 keywords