![]() |
|
#include <wavfile.h>
Public Types | |
enum | TagTypes { NoTags = 0x0000, ID3v2 = 0x0001, Info = 0x0002, AllTags = 0xffff } |
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 () |
ID3v2::Tag * | tag () const |
ID3v2::Tag * | ID3v2Tag () const |
Info::Tag * | InfoTag () const |
void | strip (TagTypes tags=AllTags) |
PropertyMap | properties () const |
void | removeUnsupportedProperties (const StringList &properties) |
PropertyMap | setProperties (const PropertyMap &) |
virtual Properties * | audioProperties () const |
virtual bool | save () |
bool | save (TagTypes tags, bool stripOthers=true, int id3v2Version=4) |
bool | hasID3v2Tag () const |
bool | hasInfoTag () const |
Friends | |
class | Properties |
This implements and provides an interface for WAV 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 WAV files.
NoTags | Empty set. Matches no tag types. |
ID3v2 | Matches ID3v2 tags. |
Info | Matches INFO tags. |
AllTags | Matches all tag types. |
TagLib::RIFF::WAV::File::File | ( | FileName | file, | |
bool | readProperties = true , |
|||
Properties::ReadStyle | propertiesStyle = Properties::Average | |||
) |
Constructs a WAV file from file. If readProperties is true the file's audio properties will also be read.
TagLib::RIFF::WAV::File::File | ( | IOStream * | stream, | |
bool | readProperties = true , |
|||
Properties::ReadStyle | propertiesStyle = Properties::Average | |||
) |
virtual TagLib::RIFF::WAV::File::~File | ( | ) | [virtual] |
Destroys this instance of the File.
Reimplemented from TagLib::RIFF::File.
ID3v2::Tag* TagLib::RIFF::WAV::File::tag | ( | ) | const [virtual] |
Returns the ID3v2 Tag for this file.
Implements TagLib::File.
ID3v2::Tag* TagLib::RIFF::WAV::File::ID3v2Tag | ( | ) | const |
Returns the ID3v2 Tag for this file.
Info::Tag* TagLib::RIFF::WAV::File::InfoTag | ( | ) | const |
Returns the RIFF INFO Tag for this file.
void TagLib::RIFF::WAV::File::strip | ( | TagTypes | tags = AllTags |
) |
This will strip the tags that match the OR-ed together TagTypes from the file. By default it strips all tags. It returns true if the tags are successfully stripped.
PropertyMap TagLib::RIFF::WAV::File::properties | ( | ) | const |
Implements the unified property interface -- export function. This method forwards to ID3v2::Tag::properties().
Reimplemented from TagLib::File.
void TagLib::RIFF::WAV::File::removeUnsupportedProperties | ( | const StringList & | properties | ) |
Removes unsupported properties, or a subset of them, from the file's metadata. The parameter properties must contain only entries from properties().unsupportedData(). BIC: Will be mad virtual in future releases.
Reimplemented from TagLib::File.
PropertyMap TagLib::RIFF::WAV::File::setProperties | ( | const PropertyMap & | ) |
Implements the unified property interface -- import function. This method forwards to ID3v2::Tag::setProperties().
Reimplemented from TagLib::File.
virtual Properties* TagLib::RIFF::WAV::File::audioProperties | ( | ) | const [virtual] |
Returns the WAV::Properties for this file. If no audio properties were read then this will return a null pointer.
Implements TagLib::File.
virtual bool TagLib::RIFF::WAV::File::save | ( | ) | [virtual] |
Saves the file.
Implements TagLib::File.
bool TagLib::RIFF::WAV::File::save | ( | TagTypes | tags, | |
bool | stripOthers = true , |
|||
int | id3v2Version = 4 | |||
) |
bool TagLib::RIFF::WAV::File::hasID3v2Tag | ( | ) | const |
bool TagLib::RIFF::WAV::File::hasInfoTag | ( | ) | const |
friend class Properties [friend] |