Reputation: 77
Try to change ID3 tags in mp3 file using python3 & mutagen.
trackN.add(mutagen.id3.TIT2(encoding=3, text=dict['title']))
It works on Ubuntu, but on Windows7 all tags are disappear.
No errors in script.
How can i fix it?
Upvotes: 1
Views: 769
Reputation: 77
The problem is that you need to save the tags in the ID3 second version
audio.save(v2_version=3)
Upvotes: 2