The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

SYNOPSIS

  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"

DESCRIPTION

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.

new()

Constructs an empty peak volume description.

UV bitsRepresentingPeak()

Returns the number of bits (in the range of 0 to 255) used to describe the peak volume.

void setBitsRepresentingPeak(UV $b)

Sets the number of bits to $b, which is used to describe the peak volume.

ByteVector peakVolume()

Returns the array of bits (represented as a series of bytes) used to describe the peak volume.

void setPeakVolume(ByteVector $v)

Sets the array of bits to $v, which is used ot describe the peak volume.

EXPORT

None by default.

SEE ALSO

Audio::TagLib

AUTHOR

Dongxu Ma, <dongxu@cpan.org>

MAINTAINER

Geoffrey Leach GLEACH@cpan.org

COPYRIGHT AND LICENSE

Copyright (C) 2005-2010 by Dongxu Ma

Copyright (C) 2011 - 2012 Geoffrey Leach

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.