MP3::ID3Lib::Frame - ID3v1/ID3v2 Tagging Frames


MP3-ID3Lib documentation  | view source Contained in the MP3-ID3Lib distribution.

Index


NAME

Top

MP3::ID3Lib::Frame - ID3v1/ID3v2 Tagging Frames

SYNOPSIS

Top

  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

Top

See MP3::ID3Lib for more information.

AUTHOR

Top

Leon Brocard, leon@astray.com

COPYRIGHT

Top


MP3-ID3Lib documentation  | view source Contained in the MP3-ID3Lib distribution.