from mutagen.flac import FLAC
audio = FLAC("/file/path")
audio["comment"] = "This is my comment"
audio.save()
I checked it tags the Flac file if I give file path. But how to run this on all files present in their respective album name folders? Like recursively?
I get IsADirectory
error on giving a directory path.
I'm literally not a coder. It would be awesome if someone could help me in this. I have been searching for python cli program for the same but couldn't find any.