I have some flac songs, they all have different cover arts. I really want to remove or change the covert art with my own .png
What I have tried so far:
from mutagen import File
from PIL import Image
img = Image.open('art.png')
file = File('ZAYN - PILLOWTALK.flac')
file.pictures[1] = img
file.save()
But have failed to do so.
Thx in advance.