eyeD3 is a Python tool for working with audio files, specifically mp3 files containing ID3 metadata (i.e. song info).
Here is my code import eyed3 audiofile = eyed3.load("19 Calvin Harris - Summer.mp3") print(audiofile.tag.artist) This is …
python mp3 eyed3I am getting an mp3 tag (ID V1) with eyeD3 and would like to understand its encoding. Here is what …
python python-2.7 unicode encoding eyed3