我有一些mp3文件,文件名和标签上都有西里尔字符。
我正在使用audacious来播放它们。请参阅下面的文件信息:

是否可以更改一些编码以正确显示内容?
我想,应该是Высоко。
发布于 2019-12-10 20:59:32
或者,您可以使用来自mid3iconv包的python诱变剂实用程序:
$ mid3iconv
Usage: mid3iconv [OPTION] [FILE]...
Mutagen-based replacement the id3iconv utility, which converts ID3 tags from
legacy encodings to Unicode and stores them using the ID3v2 format.
Options:
...
-e ENCODING, --encoding=ENCODING
...
--force-v1 Use an ID3v1 tag even if an ID3v2 tag is present
--remove-v1 Remove v1 tag after processing the files所以,基本上,
mid3iconv -eCP1251 --remove-v1会产生你想要的结果。
https://unix.stackexchange.com/questions/114382
复制相似问题