An implementation of audio property reading for FLAC. More...
#include <flacproperties.h>
Public Member Functions | |
Properties (const ByteVector &data, offset_t streamLength, ReadStyle style=Average) | |
~Properties () override | |
Properties (const Properties &)=delete | |
Properties & | operator= (const Properties &)=delete |
int | lengthInMilliseconds () const override |
int | bitrate () const override |
int | sampleRate () const override |
int | channels () const override |
int | bitsPerSample () const |
unsigned long long | sampleFrames () const |
ByteVector | signature () const |
![]() | |
virtual | ~AudioProperties () |
AudioProperties (const AudioProperties &)=delete | |
AudioProperties & | operator= (const AudioProperties &)=delete |
virtual TAGLIB_DEPRECATED int | length () const |
virtual int | lengthInSeconds () const |
Additional Inherited Members | |
![]() | |
enum | ReadStyle { Fast , Average , Accurate } |
![]() | |
AudioProperties (ReadStyle style) | |
An implementation of audio property reading for FLAC.
This reads the data from a FLAC stream found in the AudioProperties API.
TagLib::FLAC::Properties::Properties | ( | const ByteVector & | data, |
offset_t | streamLength, | ||
ReadStyle | style = Average |
||
) |
Create an instance of FLAC::Properties with the data read from the ByteVector data.
|
override |
Destroys this FLAC::Properties instance.
|
delete |
|
overridevirtual |
Returns the average bit rate of the file in kb/s.
Reimplemented from TagLib::AudioProperties.
int TagLib::FLAC::Properties::bitsPerSample | ( | ) | const |
Returns the number of bits per audio sample as read from the FLAC identification header.
|
overridevirtual |
Returns the number of audio channels.
Implements TagLib::AudioProperties.
|
overridevirtual |
Returns the length of the file in milliseconds.
Reimplemented from TagLib::AudioProperties.
|
delete |
Return the number of sample frames.
|
overridevirtual |
Returns the sample rate in Hz.
Reimplemented from TagLib::AudioProperties.
ByteVector TagLib::FLAC::Properties::signature | ( | ) | const |
Returns the MD5 signature of the uncompressed audio stream as read from the stream info header.