欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Linux下MP3的TAG乱码问题解决方法

程序员文章站 2023-11-10 08:54:22
因为windows下一般MP3的TAG编码为GB2312,所以我们可以通过mid3iconv将MP3的TAG编码转换成GBK编码即可... 13-01-29...


复制代码
代码如下:

sudo apt-get install python-mutagen

然后使用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:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -e encoding, --encoding=encoding
                        specify original tag encoding (default is utf-8)
  -p, --dry-run         do not actually modify files
  --force-v1            use an id3v1 tag even if an id3v2 tag is present
  --remove-v1           remove v1 tag after processing the files
  -q, --quiet           only output errors
  -d, --debug           output updated tags


复制代码
代码如下:

mid3iconv -e gbk *.mp3

将mp3的tag编码转换成gbk编码,乱码原因是windows下一般mp3的tag编码为gb2312.