After Using Python Mutagen,metatags Not Displayed
I wanted to edit the meta data of a bunch of mp3 files,so I used python mutegan. The details of the mp3 file before running mutagen I used this simple code to change the details of
Solution 1:
easyid3 does not support v2.3 atm: https://github.com/quodlibet/mutagen/issues/188
You can work around this issue by doing
mutagen.id3.ID3("C:\\...mp3").save(v2_version=3)
after saving with easyid3
Post a Comment for "After Using Python Mutagen,metatags Not Displayed"