TagLib 1.8.0 (TagLib::RIFF::WAV::File Class Reference)

TagLib::RIFF::WAV::File Class Reference

An implementation of TagLib::File with WAV specific methods. More...

#include <wavfile.h>

Inheritance diagram for TagLib::RIFF::WAV::File:
Collaboration diagram for TagLib::RIFF::WAV::File:

Public Types

enum  TagTypes { NoTags = 0x0000, ID3v2 = 0x0001, Info = 0x0002, AllTags = 0xffff }
 
- Public Types inherited from TagLib::File
enum  Position { Beginning, Current, End }
 

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::Tagtag () const
 
ID3v2::TagID3v2Tag () const
 
Info::TagInfoTag () const
 
PropertyMap properties () const
 
void removeUnsupportedProperties (const StringList &properties)
 
PropertyMap setProperties (const PropertyMap &)
 
virtual PropertiesaudioProperties () const
 
virtual bool save ()
 
bool save (TagTypes tags, bool stripOthers=true, int id3v2Version=4)
 
- Public Member Functions inherited from TagLib::File
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

- Static Public Member Functions inherited from TagLib::File
static bool isReadable (const char *file)
 
static bool isWritable (const char *name)
 
- Protected Types inherited from TagLib::RIFF::File
enum  Endianness { BigEndian, LittleEndian }
 
- Protected Member Functions inherited from TagLib::RIFF::File
 File (FileName file, Endianness endianness)
 
 File (IOStream *stream, Endianness endianness)
 
uint riffSize () const
 
uint chunkCount () const
 
uint chunkOffset (uint i) const
 
uint chunkDataSize (uint i) const
 
uint chunkPadding (uint i) const
 
ByteVector chunkName (uint i) const
 
ByteVector chunkData (uint i)
 
void setChunkData (uint i, const ByteVector &data)
 
void setChunkData (const ByteVector &name, const ByteVector &data, bool alwaysCreate=false)
 
void removeChunk (uint i)
 
void removeChunk (const ByteVector &name)
 
- Protected Member Functions inherited from TagLib::File
 File (FileName file)
 
 File (IOStream *stream)
 
void setValid (bool valid)
 
void truncate (long length)
 
- Static Protected Member Functions inherited from TagLib::File
static uint bufferSize ()
 

Detailed Description

An implementation of TagLib::File with WAV specific methods.

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.

Member Enumeration Documentation

Enumerator
NoTags 

Empty set. Matches no tag types.

ID3v2 

Matches ID3v2 tags.

Info 

Matches Info tags.

AllTags 

Matches all tag types.

Constructor & Destructor Documentation

TagLib::RIFF::WAV::File::File ( FileName  file,
bool  readProperties = true,
Properties::ReadStyle  propertiesStyle = Properties::Average 
)

Contructs an WAV file from file. If readProperties is true the file's audio properties will also be read using propertiesStyle. If false, propertiesStyle is ignored.

TagLib::RIFF::WAV::File::File ( IOStream stream,
bool  readProperties = true,
Properties::ReadStyle  propertiesStyle = Properties::Average 
)

Contructs an WAV file from file. If readProperties is true the file's audio properties will also be read using propertiesStyle. If false, propertiesStyle is ignored.

Note
TagLib will not take ownership of the stream, the caller is responsible for deleting it after the File object.
virtual TagLib::RIFF::WAV::File::~File ( )
virtual

Destroys this instance of the File.

Reimplemented from TagLib::RIFF::File.

Member Function Documentation

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.

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.

PropertyMap TagLib::RIFF::WAV::File::properties ( ) const

Implements the unified property interface – export function. This method forwards to ID3v2::Tag::properties().

void TagLib::RIFF::WAV::File::removeUnsupportedProperties ( const StringList properties)
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 
)
PropertyMap TagLib::RIFF::WAV::File::setProperties ( const PropertyMap )

Implements the unified property interface – import function. This method forwards to ID3v2::Tag::setProperties().

ID3v2::Tag* TagLib::RIFF::WAV::File::tag ( ) const
virtual

Returns the ID3v2 Tag for this file.

Note
This method does not return all the tags for this file for backward compatibility. Will be fixed in TagLib 2.0.

Implements TagLib::File.


The documentation for this class was generated from the following file: