Hereās the entire output from the device:
from pathlib import Path
from mutagen.easyid3 import EasyID3
from mutagen.mp33 import MP3
pathlist = Path('/home/defaultuser/Music/Modest Mouse - The Moon & Antarctica').glob('**/*.mp3')
for path in pathlist:
audio=MP3(path, ID3=EasyID3)
print(audio)
{'album': ['The Moon & Antarctica'], 'title': ['3rd Planet [BBC Radio 1 Session Radio Edit]'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['16'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Wild Packs Of Family Dogs'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['10'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Lives'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['13'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['3rd Planet'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['1'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Custom Concern [Instrumental BBC Radio 1 Session Version]'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['18']}
{'album': ['The Moon & Antarctica'], 'title': ['What People Are Made Of'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['15'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['I Came As A Rat'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['12'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Life Like Weeds'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['14'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['The Cold Part'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['7'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Gravity Rides Everything'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['2'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['The Stars Are Projectors'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['9'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['A Different City'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['6'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Paper Thin Walls'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['11'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Perfect Disguise'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['4'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Tiny Cities Made Of Ashes'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['5'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Dark Center Of The Universe'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['3'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Perfect Disguise [BBC Radio 1 Session Version]'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['17'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Alone Down There'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['8'], 'date': ['2000']}
{'album': ['The Moon & Antarctica'], 'title': ['Tiny Cities Made Of Ashes [BBC Radio 1 Session Version]'], 'artist': ['Modest Mouse'], 'albumartist': ['Modest Mouse'], 'tracknumber': ['19']}
>>>
It looks like the BBC tracks donāt have a date at all?!