Phonon: edit audio file meta data
-
Hi, I'm writing a program to edit tags of audio files.
Using the Phonon:: media object:: metadata(), I took a tag from the file.
For example
@Phonon::MediaObject *metaInformationResolver = new Phonon::MediaObject(this);
metaInformationResolver->setCurrentSource("temp.mp3");
QMap<QString, QString> metaData = metaInformationResolver->metaData();
text->append(metaData.value("TITLE"));@
But how to change the data? I have not found anything in the documentation.
I do not want you to use the type library id3lib, taglib.
Help me, please