MP3::Mplib

Speedy access to id3v1 and id3v2 tags
Download

MP3::Mplib Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Tassilo von Parseval
  • Publisher web site:
  • http://search.cpan.org/~vparseval/

MP3::Mplib Tags


MP3::Mplib Description

Speedy access to id3v1 and id3v2 tags MP3::Mplib is a Perl wrapper around Stefan Podkowinski's mplib written in C. It combines the best of both worlds: C's speed and Perl's nice object-orientedness. Note that MP3::Mplib ships with its own version of mplib (currently 1.0.1).There is no sophistaced class hierarchy. You simply create a MP3::Mplib object. Each method either returns a native Perl data-structure or takes one. Bang. That's it.SYNOPSIS use MP3::Mplib; my $mp3 = MP3::Mplib->new("/path/to/file.mp3"); my $v1tag = $mp3->get_v1tag; my $v2tag = $mp3->get_v2tag; while (my ($key, $val) = each %$v1tag) { print "$key: $val "; } while (my ($key, $val) = each %$v2tag) { ... } $mp3->add_to_v2tag( { TYER => 2002 } ); Requirements: · Perl


MP3::Mplib Related Software