![]() |
|
An implementation of TagLib::File with Ogg/FLAC specific methods. More...
#include <oggflacfile.h>
Public Member Functions | |
File (FileName file, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average) | |
File (IOStream *stream, bool readProperties=true, Properties::ReadStyle propertiesStyle=Properties::Average) | |
virtual | ~File () |
virtual XiphComment * | tag () const |
virtual Properties * | audioProperties () const |
PropertyMap | properties () const |
PropertyMap | setProperties (const PropertyMap &) |
virtual bool | save () |
long | streamLength () |
![]() | |
ByteVector | packet (uint i) |
void | setPacket (uint i, const ByteVector &p) |
const PageHeader * | firstPageHeader () |
const PageHeader * | lastPageHeader () |
![]() | |
FileName | name () const |
PropertyMap | properties () const |
void | removeUnsupportedProperties (const StringList &properties) |
PropertyMap | setProperties (const PropertyMap &properties) |
ByteVector | readBlock (ulong length) |
void | writeBlock (const ByteVector &data) |
long | find (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector::null) |
long | rfind (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector::null) |
void | insert (const ByteVector &data, ulong start=0, ulong replace=0) |
void | removeBlock (ulong start=0, ulong length=0) |
bool | readOnly () const |
bool | isOpen () const |
bool | isValid () const |
void | seek (long offset, Position p=Beginning) |
void | clear () |
long | tell () const |
long | length () |
Additional Inherited Members | |
![]() | |
enum | Position { Beginning, Current, End } |
![]() | |
static bool | isReadable (const char *file) |
static bool | isWritable (const char *name) |
![]() | |
File (FileName file) | |
File (IOStream *stream) | |
![]() | |
static uint | bufferSize () |
An implementation of TagLib::File with Ogg/FLAC specific methods.
This implements and provides an interface for Ogg/FLAC files to the TagLib::Tag and TagLib::AudioProperties interfaces by way of implementing the abstract TagLib::File API as well as providing some additional information specific to Ogg FLAC files.
TagLib::Ogg::FLAC::File::File | ( | FileName | file, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
Contructs an Ogg/FLAC file from file. If readProperties is true the file's audio properties will also be read using propertiesStyle. If false, propertiesStyle is ignored.
TagLib::Ogg::FLAC::File::File | ( | IOStream * | stream, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
|
virtual |
Destroys this instance of the File.
Reimplemented from TagLib::Ogg::File.
|
virtual |
Returns the FLAC::Properties for this file. If no audio properties were read then this will return a null pointer.
Implements TagLib::File.
PropertyMap TagLib::Ogg::FLAC::File::properties | ( | ) | const |
Implements the unified property interface – export function. This forwards directly to XiphComment::properties().
|
virtual |
Save the file. This will primarily save and update the XiphComment. Returns true if the save is successful.
Reimplemented from TagLib::Ogg::File.
PropertyMap TagLib::Ogg::FLAC::File::setProperties | ( | const PropertyMap & | ) |
Implements the unified tag dictionary interface – import function. Like properties(), this is a forwarder to the file's XiphComment.
long TagLib::Ogg::FLAC::File::streamLength | ( | ) |
Returns the length of the audio-stream, used by FLAC::Properties for calculating the bitrate.
|
virtual |
Returns the Tag for this file. This will always be a XiphComment.
Implements TagLib::File.