|
|
#include <mp4file.h>


Public Member Functions | |
| File (FileName file, bool readProperties=true, Properties::ReadStyle audioPropertiesStyle=Properties::Average) | |
| File (IOStream *stream, bool readProperties=true, Properties::ReadStyle audioPropertiesStyle=Properties::Average) | |
| virtual | ~File () |
| Tag * | tag () const |
| Properties * | audioProperties () const |
| bool | save () |
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 | |
Public Types inherited from TagLib::File | |
| enum | Position { Beginning, Current, End } |
Static Public Member Functions inherited from TagLib::File | |
| static bool | isReadable (const char *file) |
| static bool | isWritable (const char *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 () |
This implements and provides an interface for MP4 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 MP4 files.
| TagLib::MP4::File::File | ( | FileName | file, |
| bool | readProperties = true, |
||
| Properties::ReadStyle | audioPropertiesStyle = Properties::Average |
||
| ) |
Contructs a MP4 file from file. If readProperties is true the file's audio properties will also be read using propertiesStyle. If false, propertiesStyle is ignored.
| TagLib::MP4::File::File | ( | IOStream * | stream, |
| bool | readProperties = true, |
||
| Properties::ReadStyle | audioPropertiesStyle = Properties::Average |
||
| ) |
Contructs a MP4 file from file. If readProperties is true the file's audio properties will also be read using propertiesStyle. If false, propertiesStyle is ignored.
|
virtual |
Destroys this instance of the File.
Reimplemented from TagLib::File.
|
virtual |
Returns the MP4 audio properties for this file.
Implements TagLib::File.
|
virtual |
|
virtual |
Returns a pointer to the MP4 tag of the file.
MP4::Tag implements the tag interface, so this serves as the reimplementation of TagLib::File::tag().
Implements TagLib::File.