![]() |
|
An implementation of Ogg::File with Opus specific methods. More...
#include <opusfile.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 Ogg::XiphComment * | tag () const |
PropertyMap | properties () const |
PropertyMap | setProperties (const PropertyMap &) |
virtual Properties * | audioProperties () const |
virtual bool | save () |
An implementation of Ogg::File with Opus specific methods.
This is the central class in the Ogg Opus metadata processing collection of classes. It's built upon Ogg::File which handles processing of the Ogg logical bitstream and breaking it down into pages which are handled by the codec implementations, in this case Opus specifically.
TagLib::Ogg::Opus::File::File | ( | FileName | file, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
Constructs an Opus file from file. If readProperties is true the file's audio properties will also be read.
TagLib::Ogg::Opus::File::File | ( | IOStream * | stream, |
bool | readProperties = true , |
||
Properties::ReadStyle | propertiesStyle = Properties::Average |
||
) |
virtual TagLib::Ogg::Opus::File::~File | ( | ) | [virtual] |
Destroys this instance of the File.
Reimplemented from TagLib::Ogg::File.
virtual Properties* TagLib::Ogg::Opus::File::audioProperties | ( | ) | const [virtual] |
Returns the Opus::Properties for this file. If no audio properties were read then this will return a null pointer.
Implements TagLib::File.
Implements the unified property interface -- export function. This forwards directly to XiphComment::properties().
Reimplemented from TagLib::File.
virtual bool TagLib::Ogg::Opus::File::save | ( | ) | [virtual] |
Save the file.
This returns true if the save was successful.
Reimplemented from TagLib::Ogg::File.
Implements the unified tag dictionary interface -- import function. Like properties(), this is a forwarder to the file's XiphComment.
Reimplemented from TagLib::File.
virtual Ogg::XiphComment* TagLib::Ogg::Opus::File::tag | ( | ) | const [virtual] |
Returns the XiphComment for this file. XiphComment implements the tag interface, so this serves as the reimplementation of TagLib::File::tag().
Implements TagLib::File.