Solution: use another id3-tagging tool, i.e. mutagen mid3v2 and mid3iconv.
mid3iconv is very handy - it converts the id3-tags from a source character-encoding (specied with -e <character-set>, default:UTF-8) to UTF-8 and also writes the correct character-encoding metadata into the id3v2.4 tags, so they'll display well in other apps.
If you've already converted the id3-tags to UTF-8 with id3/id3v2 you can repair them with:
$ find ./ -iname "*.mp3" | while read f; do mid3iconv --remove-v1 -d "$f"; done
Keine Kommentare:
Kommentar veröffentlichen