![]() |
|
An implementation of audio property reading for Ogg Speex. More...
#include <speexproperties.h>
Public Member Functions | |
Properties (File *file, ReadStyle style=Average) | |
virtual | ~Properties () |
virtual int | length () const |
int | lengthInSeconds () const |
int | lengthInMilliseconds () const |
virtual int | bitrate () const |
int | bitrateNominal () const |
virtual int | sampleRate () const |
virtual int | channels () const |
int | speexVersion () const |
![]() | |
virtual | ~AudioProperties () |
virtual int | length () const =0 |
int | lengthInSeconds () const |
int | lengthInMilliseconds () const |
virtual int | bitrate () const =0 |
virtual int | sampleRate () const =0 |
virtual int | channels () const =0 |
Additional Inherited Members | |
![]() | |
enum | ReadStyle { Fast , Average , Accurate } |
![]() | |
AudioProperties (ReadStyle style) | |
An implementation of audio property reading for Ogg Speex.
This reads the data from an Ogg Speex stream found in the AudioProperties API.
Create an instance of Speex::Properties with the data read from the Speex::File file.
|
virtual |
Destroys this Speex::Properties instance.
|
virtual |
Returns the average bit rate of the file in kb/s.
Implements TagLib::AudioProperties.
int TagLib::Ogg::Speex::Properties::bitrateNominal | ( | ) | const |
Returns the nominal bit rate as read from the Speex header in kb/s.
|
virtual |
Returns the number of audio channels.
Implements TagLib::AudioProperties.
|
virtual |
Returns the length of the file in seconds. The length is rounded down to the nearest whole second.
Implements TagLib::AudioProperties.
int TagLib::Ogg::Speex::Properties::lengthInMilliseconds | ( | ) | const |
Returns the length of the file in milliseconds.
int TagLib::Ogg::Speex::Properties::lengthInSeconds | ( | ) | const |
Returns the length of the file in seconds. The length is rounded down to the nearest whole second.
|
virtual |
Returns the sample rate in Hz.
Implements TagLib::AudioProperties.
int TagLib::Ogg::Speex::Properties::speexVersion | ( | ) | const |
Returns the Speex version, currently "0" (as specified by the spec).