NAME
MP3::ID3Lib::Frame - ID3v1/ID3v2 Tagging Frames
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 'COMM';
print "$description: $value\n";
}
$id3->commit;
DESCRIPTION
See MP3::ID3Lib for more information.
AUTHOR
Leon Brocard, leon@astray.com
COPYRIGHT
Copyright (c) 2002 Leon Brocard. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.