package Audio::TagLib::MPEG::Header; use 5.008003; use strict; use warnings; our $VERSION = '1.41'; use Audio::TagLib; our %_Version = ( "Version1" => 0, "Version2" => 1, "Version2_5" => 2, ); our %_ChannelMode = ( "Stereo" => 0, "JointStereo" => 1, "DualChannel" => 2, "SingleChannel" => 3, ); # Preloaded methods go here. 1; __END__ # Below is stub documentation for your module. You'd better edit it! =head1 NAME Audio::TagLib::MPEG::Header - An implementation of MP3 frame headers =head1 SYNOPSIS use Audio::TagLib::MPEG::Header; my $i = Audio::TagLib::MPEG::Header->new($data); print $i->layer(), "\n"; # normally got 3 =head1 DESCRIPTION This is an implementation of MPEG Layer III headers. The API follows more or less the binary format of these headers. Refer to F =over =item I $data)> Parses an MPEG header based on $data. =item I Does a shallow copy of $h. =item I Destroys this Header instance. =item I Returns true if the frame is at least an appropriate size and has legal values. =item %_Version The MPEG Version. C lists all available values used in Perl code. =item I Returns the MPEG Version of the header. =item I Returns the layer version. This will be between the values 1-3. =item I Returns true if the MPEG protection bit is enabled. =item I Returns the bitrate encoded in the header. =item I Returns the sample rate in Hz. =item I Returns true if the frame is padded. =item %_ChannelMode There are a few combinations or one or two channel audio that are possible. C lists all available values used in Perl code. =item I Returns the channel mode for this frame. =item I Returns true if the copyrighted bit is set. =item I Returns true if the "original" bit is set. =item I Returns the frame length. =item I Makes a shallow copy of the header. =back =head2 EXPORT None by default. =head1 SEE ALSO L =head1 AUTHOR Dongxu Ma, Edongxu@cpan.orgE =head1 COPYRIGHT AND LICENSE Copyright (C) 2005 by Dongxu Ma 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.7 or, at your option, any later version of Perl 5 you may have available. =cut