I noticed that the filenames were being formatted but there was no
metadata being put into them. When I tried asking my music app for
album covers, it couldn’t provide any because the metadata for all the songs was empty.
I’m using the Eyed3 Python library which allows tag editing for mp3s. All you need to do is install the library similar to the way you would install BeautifulSoup:
pip install eyeD3
The awesome thing about having artist and title tags inside the mp3 is that if you pull the songs into VLC, VLC will fetch the album covers for every song!
I noticed that the filenames were being formatted but there was no metadata being put into them. When I tried asking my music app for album covers, it couldn’t provide any because the metadata for all the songs was empty.
I’m using the Eyed3 Python library which allows tag editing for mp3s. All you need to do is install the library similar to the way you would install BeautifulSoup:
The awesome thing about having artist and title tags inside the mp3 is that if you pull the songs into VLC, VLC will fetch the album covers for every song!