taglib : how to edit Album Artist?
How to modify the "Album Artist" field of a MP3 file with the library TagLib ? Is there something similar to : f.tag()->setArtist("blabla"); ? scotchi ID3v2 doesn't actually support a field called "album artist". iTunes uses the TPE2 frame, which is supposed to be: TPE2 The 'Band/Orchestra/Accompaniment' frame is used for additional information about the performers in the recording. For a complete list of frames see http://id3.org/id3v2.3.0#Declared_ID3v2_frames . To write that with TagLib, this would do the trick: #include <mpegfile.h> #include <id3v2tag.h> #include <textidentificationframe.h