When i use the taglib to write id3v2 tag to mp3,the taglib write id3v2.4 as default. But on windows,the media player and explorer can not parse it.
How could i solve this?
code like this:
TagLib::MPEG::File* mpegfile//i've already new the instance
TagLib::ID3v2::Tag* id3v2tag = mpegfile->ID3v2Tag();
id3v2tag->setTitle("taylor swift");
mpegfile->save;
the header version is id3 v2.4 but i wanna save as id3 v2.3