Fixed encoding on cover description
This commit is contained in:
parent
2a82a9a663
commit
4de567dfcf
|
@ -81,7 +81,7 @@ def tagID3(stream, track, save):
|
||||||
if save['cover'] and track.album['picPath']:
|
if save['cover'] and track.album['picPath']:
|
||||||
with open(track.album['picPath'], 'rb') as f:
|
with open(track.album['picPath'], 'rb') as f:
|
||||||
tag.add(
|
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,
|
tag.save(stream, v1=2 if save['saveID3v1'] else 0, v2_version=3,
|
||||||
v23_sep=None if save['useNullSeparator'] else '/')
|
v23_sep=None if save['useNullSeparator'] else '/')
|
||||||
|
|
Loading…
Reference in New Issue