Force utf8 encoding on new id3_desc tags

This commit is contained in:
Thomas Scholtes 2014-02-26 22:48:41 +01:00
parent 5606e60e72
commit 4228628f84

View file

@ -491,6 +491,7 @@ class MediaField(object):
for frame in frames:
if frame.desc.lower() == style.id3_desc.lower():
setattr(frame, style.id3_frame_field, out)
frame.encoding = 3 # utf8
found = True
break