[Django]-How to get title, artist, and album art using mutagen (Python and Django)?

5👍

try

mutagen.File(filePath, easy=True)

this should work. Note: if you get {} after trying this code, your music file has no meta data.

👤Sphinx

Leave a comment