![]() |
![]()
| ![]() |
![]()
NAMEAudio::Musepack - An object-oriented interface to Musepack file information and APE tag fields. SYNOPSISuse Audio::Musepack; my $mpc = Audio::Musepack->new("song.mpc"); my $mpcInfo = $mpc->info(); foreach (keys %$mpcInfo) { print "$_: $mpcInfo->{$_}\n"; } my $mpcTags = $mpc->tags(); foreach (keys %$mpcTags) { print "$_: $mpcTags->{$_}\n"; } DESCRIPTIONThis module returns a hash containing basic information about a Musepack file, as well as tag information contained in the Musepack file's APE tags. CONSTRUCTORS
INSTANCE METHODS
NOTEThis module is now a wrapper around Audio::Scan. SEE ALSO<http://www.personal.uni-jena.de/~pfk/mpp/index2.html>, Audio::Scan AUTHORDan Sully, <daniel@cpan.org> Original Author: Erik Reckase, <cerebusjam at hotmail dot com> COPYRIGHTCopyright (c) 2003-2006, Erik Reckase. Copyright (c) 2003-2007, Dan Sully & Slim Devices. Copyright (c) 2003-2010, Dan Sully. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.2 or, at your option, any later version of Perl 5 you may have available.
|