Fixed encoding on cover description

This commit is contained in:
RemixDev 2020-09-10 13:13:58 +02:00
parent 2a82a9a663
commit 4de567dfcf
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ def tagID3(stream, track, save):
if save['cover'] and track.album['picPath']:
with open(track.album['picPath'], 'rb') as f:
tag.add(
APIC(3, 'image/jpeg' if track.album['picPath'].endswith('jpg') else 'image/png', 3, desc='cover', data=f.read()))
APIC(0, 'image/jpeg' if track.album['picPath'].endswith('jpg') else 'image/png', 3, desc='cover', data=f.read()))
tag.save(stream, v1=2 if save['saveID3v1'] else 0, v2_version=3,
v23_sep=None if save['useNullSeparator'] else '/')