I'm trying to use eyed3, as a Python library, in order to change the artist name for a large collection of .MP3 files. I tried using the sample code of the project's web page (http://eyed3.nicfit.net/) and setsaudiofile.tag.artist changes the "Contributing Artist". According to the docs (at http://eyed3.nicfit.net/api/eyed3.html) there are no other artist fields for a tag object.
Is is possible to use eyed3 to actually change the Album Artist? If so, can you provide clear, concise Python code that does so?
album_artist
is available in thetag
objectimport eyed3; audiofile = eyed3.load("song.mp3"); audiofile.tag.album_artist = u"Various Artists";
, example right from eyed3.nicfit.net – Roundsman