Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

audio::ape(3pm) [debian man page]

Audio::APE(3pm) 					User Contributed Perl Documentation					   Audio::APE(3pm)

NAME
Audio::APE - An object-oriented interface to Monkey's Audio file information and APE tag fields. SYNOPSIS
use Audio::APE; my $mac = Audio::APE->new("song.ape"); foreach (keys %$mac) { print "$_: $mac->{$_} "; } my $macTags = $mac->tags(); foreach (keys %$macTags) { print "$_: $macTags->{$_} "; } DESCRIPTION
This module returns a hash containing basic information about a Monkey's Audio file, as well as tag information contained in the Monkey's Audio file's APE tags. CONSTRUCTORS
o new( $filename ) Opens a Monkey's Audio file, ensuring that it exists and is actually an Monkey's Audio stream, then loads the information and comment fields. INSTANCE METHODS
o info( [$key] ) Returns a hashref containing information about the Monkey's Audio file from the file's information header. The optional parameter, key, allows you to retrieve a single value from the info hash. Returns "undef" if the key is not found. o tags( [$key] ) Returns a hashref containing tag keys and values of the Monkey's Audio file from the file's APE tags. The optional parameter, key, allows you to retrieve a single value from the tag hash. Returns "undef" if the key is not found. NOTE
This module is now a wrapper around Audio::Scan. SEE ALSO
<http://www.monkeysaudio.com/>, Audio::Scan AUTHOR
Dan Sully, <daniel@cpan.org> Kevin Deane-Freeman, <kevindf at shaw dot ca>, based on other work by Erik Reckase, <cerebusjam at hotmail dot com>, and Dan Sully, <daniel@cpan.org> COPYRIGHT
Copyright (c) 2004, Kevin Deane-Freeman. Copyright (c) 2005-2007, Dan Sully & Slim Devices. Copyright (c) 2007-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. perl v5.10.1 2010-12-25 Audio::APE(3pm)

Check Out this Related Man Page

Audio::MPD::Common(3pm) 				User Contributed Perl Documentation				   Audio::MPD::Common(3pm)

NAME
Audio::MPD::Common - common helper classes for mpd VERSION
version 1.120881 DESCRIPTION
Depending on whether you're using a POE-aware environment or not, people wanting to tinker with mpd (Music Player Daemon) will use either POE::Component::Client::MPD or Audio::MPD. But even if the run-cores of those two modules differ completely, they are using the exact same common classes to represent the various mpd states and information. Therefore, those common classes have been outsourced to Audio::MPD::Common. This module does not export any methods, but the dist provides the following classes that you can query with perldoc: o Audio::MPD::Common::Item o Audio::MPD::Common::Item::Directory o Audio::MPD::Common::Item::Playlist o Audio::MPD::Common::Item::Song o Audio::MPD::Common::Stats o Audio::MPD::Common::Status o Audio::MPD::Common::Time o Audio::MPD::Common::Types Note that those modules should not be of any use outside the two mpd modules afore-mentioned. SEE ALSO
You can look for information on this module at: o Search CPAN http://search.cpan.org/dist/Audio-MPD-Common <http://search.cpan.org/dist/Audio-MPD-Common> o See open / report bugs http://rt.cpan.org/NoAuth/Bugs.html?Dist=Audio-MPD-Common <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Audio-MPD-Common> o Git repository http://github.com/jquelin/audio-mpd-common.git <http://github.com/jquelin/audio-mpd-common.git> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Audio-MPD-Common <http://annocpan.org/dist/Audio-MPD-Common> o CPAN Ratings http://cpanratings.perl.org/d/Audio-MPD-Common <http://cpanratings.perl.org/d/Audio-MPD-Common> You may want to look at the modules really accessing MPD: o Audio::MPD o POE::Component::Client::MPD AUTHOR
Jerome Quelin COPYRIGHT AND LICENSE
This software is copyright (c) 2007 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-04-01 Audio::MPD::Common(3pm)
Man Page