package Audio::TagLib::FLAC::Properties; use 5.008003; use strict; use warnings; our $VERSION = '1.41'; use Audio::TagLib; our @ISA = qw(Audio::TagLib::AudioProperties); # Preloaded methods go here. 1; __END__ # Below is stub documentation for your module. You'd better edit it! =head1 NAME Audio::TagLib::FLAC::Properties - An implementation of audio property reading for FLAC =head1 SYNOPSIS use Audio::TagLib::FLAC::Properties; my $i = Audio::TagLib::FLAC::Properties->new("sample file.flac"); print $i->channels(); # should be 2 usually =head1 DESCRIPTION This reads the data from an FLAC stream found in the AudioProperties API. =over =item I $data, IV $streamLength, L $style = "Average")> Create an instance of FLAC::Properties with the data read from the ByteVector $data. =item I $file, L $style = "Average")> Create an instance of FLAC::Properties with the data read from the FLAC::File $file. =item I Destroys this FLAC::Properties instance. =item I =item I =item I =item I see L =item I Returns the sample width as read from the FLAC identification header. =back =head2 EXPORT None by default. =head1 SEE ALSO L 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