mirror of
https://github.com/taglib/taglib.git
synced 2025-07-23 15:34:30 -04:00
More support for the unified dictionary interface.
Addded fromDict() function to ID3v2Tag. Added fromDict() and toDict() functions to the TagUnion class (uses the first non-empty tag). Added fromDict() and toDict() functions for the generic Tag class, only handling common tags without duplicates. Addded preliminary mp3 test case. Python3 bindings now available on my github site.
This commit is contained in:
@ -143,12 +143,12 @@ namespace TagLib {
|
||||
/*!
|
||||
* Implements the unified tag dictionary interface -- export function.
|
||||
*/
|
||||
TagDict toDict() const;
|
||||
virtual TagDict toDict() const;
|
||||
|
||||
/*!
|
||||
* Implements the unified tag dictionary interface -- import function.
|
||||
*/
|
||||
void fromDict(const TagDict &);
|
||||
virtual void fromDict(const TagDict &);
|
||||
|
||||
/*!
|
||||
* Returns the vendor ID of the Ogg Vorbis encoder. libvorbis 1.0 as the
|
||||
|
Reference in New Issue
Block a user