Tag Parser 12.3.1
C++ library for reading and writing MP4 (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags
|
The TagTarget class specifies the target of a tag. More...
#include <tagtarget.h>
Public Types | |
using | IdType = std::uint64_t |
using | IdContainerType = std::vector<IdType> |
Public Member Functions | |
TagTarget (std::uint64_t level=0, IdContainerType tracks=IdContainerType(), IdContainerType chapters=IdContainerType(), IdContainerType editions=IdContainerType(), IdContainerType attachments=IdContainerType()) | |
Constructs a new TagTarget with the specified level, track, chapter, edition and attachment. | |
std::uint64_t | level () const |
Returns the level. | |
void | setLevel (std::uint64_t level) |
Sets the level. | |
const std::string & | levelName () const |
Returns the level name. | |
void | setLevelName (const std::string &levelName) |
Sets the level name. | |
const IdContainerType & | tracks () const |
Returns the tracks. | |
IdContainerType & | tracks () |
Returns the tracks. | |
const IdContainerType & | chapters () const |
Returns the chapters. | |
IdContainerType & | chapters () |
Returns the chapters. | |
const IdContainerType & | editions () const |
Returns the editions. | |
IdContainerType & | editions () |
Returns the editions. | |
const IdContainerType & | attachments () const |
Returns the attachments. | |
IdContainerType & | attachments () |
Returns the attachments. | |
bool | isEmpty () const |
Returns an indication whether the target is empty. | |
void | clear () |
Clears the TagTarget. | |
std::string | toString (const std::function< TagTargetLevel(std::uint64_t)> &tagTargetMapping) const |
Returns the string representation of the current instance. | |
std::string | toString (TagTargetLevel tagTargetLevel) const |
Returns the string representation of the current instance. | |
bool | operator== (const TagTarget &other) const |
Returns whether the tag targets are equal. | |
bool | matches (const TagTarget &other) const |
Returns whether the current instance matches other. | |
The TagTarget class specifies the target of a tag.
Tags might only target a specific track, chapter, ...
Specifying a target is currently only fully supported by Matroska.
Since Ogg saves tags at stream level, the stream can be specified by passing a TagTarget instance to OggContainer::createTag(). However, only the first track in the tracks() array is considered and any other values are just ignored.
In any other tag formats, the specified target is (currently) completely ignored.
using TagParser::TagTarget::IdContainerType = std::vector<IdType> |
Definition at line 23 of file tagtarget.h.
using TagParser::TagTarget::IdType = std::uint64_t |
Definition at line 22 of file tagtarget.h.
|
inlineexplicit |
Constructs a new TagTarget with the specified level, track, chapter, edition and attachment.
Definition at line 60 of file tagtarget.h.
|
inline |
Returns the attachments.
Definition at line 161 of file tagtarget.h.
|
inline |
Returns the attachments.
Definition at line 153 of file tagtarget.h.
|
inline |
Returns the chapters.
Definition at line 129 of file tagtarget.h.
|
inline |
Returns the chapters.
Definition at line 121 of file tagtarget.h.
|
inline |
Clears the TagTarget.
Definition at line 177 of file tagtarget.h.
|
inline |
Returns the editions.
Definition at line 145 of file tagtarget.h.
|
inline |
Returns the editions.
Definition at line 137 of file tagtarget.h.
|
inline |
Returns an indication whether the target is empty.
Definition at line 169 of file tagtarget.h.
|
inline |
Returns the level.
Definition at line 73 of file tagtarget.h.
|
inline |
Returns the level name.
Definition at line 89 of file tagtarget.h.
|
inline |
Returns whether the current instance matches other.
Definition at line 205 of file tagtarget.h.
|
inline |
Returns whether the tag targets are equal.
Definition at line 193 of file tagtarget.h.
|
inline |
Sets the level.
Definition at line 81 of file tagtarget.h.
|
inline |
Sets the level name.
Definition at line 97 of file tagtarget.h.
|
inline |
Returns the string representation of the current instance.
Definition at line 217 of file tagtarget.h.
std::string TagParser::TagTarget::toString | ( | TagTargetLevel | tagTargetLevel | ) | const |
Returns the string representation of the current instance.
Definition at line 60 of file tagtarget.cpp.
|
inline |
Returns the tracks.
Definition at line 113 of file tagtarget.h.
|
inline |
Returns the tracks.
Definition at line 105 of file tagtarget.h.