
Audio::TagLib::ID3v2::RelativeVolumeFrame::PeakVolume - Struct that stores the relevant values for ID3v2 peak volume

use Audio::TagLib::ID3v2::RelativeVolumeFrame::PeakVolume;
my $i = Audio::TagLib::ID3v2::RelativeVolumeFrame::PeakVolume->new();
$i->setBitsRepresentingPeak(20);
print $i->bitsRepresentingPeak(), "\n"; # got 20
$i->setPeakVolume(Audio::TagLib::ByteVector->new("1111"));
print $i->peakVolume()->data(), "\n"; # got "1111"

The peak volume is described as a series of bits that is padded to fill a block of bytes. These two values should always be updated in tandem.
Constructs an empty peak volume description.
Returns the number of bits (in the range of 0 to 255) used to describe the peak volume.
Sets the number of bits to $b, which is used to describe the peak volume.
Returns the array of bits (represented as a series of bytes) used to describe the peak volume.
Sets the array of bits to $v, which is used ot describe the peak volume.
None by default.


Dongxu Ma, <dongxu@cpan.org>

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.