[pp/embedthumbnail] Fix embedding with mutagen (#10337)

Fixes regression in f2a4ea1794

Closes #10335
Authored by: bashonly
This commit is contained in:
bashonly 2024-07-02 16:24:17 -05:00 committed by GitHub
parent 773bbb1815
commit d502f4c6d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -134,7 +134,7 @@ def run(self, info):
meta = MP4(filename) meta = MP4(filename)
# NOTE: the 'covr' atom is a non-standard MPEG-4 atom, # NOTE: the 'covr' atom is a non-standard MPEG-4 atom,
# Apple iTunes 'M4A' files include the 'moov.udta.meta.ilst' atom. # Apple iTunes 'M4A' files include the 'moov.udta.meta.ilst' atom.
meta.tags['covr'] = [MP4Cover(data=thumb_data, imageformat=f)] meta.tags['covr'] = [MP4Cover(data=thumb_data, imageformat=f[type_])]
meta.save() meta.save()
temp_filename = filename temp_filename = filename
except Exception as err: except Exception as err: