I have a file.mp3 with unknown tags. I've used this to get the acoustID:
import acoustid
acoustID= acoustid.match(API_KEY, filepath)
acoustID
contains several candidates, let's say I choose the best one: '0f6eb38a-d6c9-4f87-a9a7-6e7b0eeb4281'.
I've tried this but it doesn't give many info:
import musicbrainzngs
musicbrainzngs.get_recording_by_id(acoustID)
How to get the corresponding tags (album, tack number, genre, band, etc...) from this acoustID ?