解决文件名mp3标签和文本文件内容的乱码问题:修订间差异
来自Ubuntu中文
跳到导航跳到搜索
新页面: 从windows转移到ubuntu的用户,常常会发现自己在windows在创建/下载/保存的文件经常性出现乱码问题(kubuntu出现问题的可能性更高一些)。而使用默... |
无编辑摘要 |
||
第4行: | 第4行: | ||
<pre>sudo apt-get install convmv | <pre>sudo apt-get install convmv | ||
convmv -r -f cp936 -t utf8 --notest --nosmart * | convmv -r -f cp936 -t utf8 --notest --nosmart * | ||
</pre> | </pre> | ||
<br> 转换文件内容由GBK到UTF8 | <br> 转换文件内容由GBK到UTF8 | ||
<pre>iconv -f gbk -t utf8 $i > newfile | <pre>iconv -f gbk -t utf8 $i > newfile | ||
</pre> | </pre> | ||
<br> | <br> | ||
2008年3月5日 (三) 17:21的版本
从windows转移到ubuntu的用户,常常会发现自己在windows在创建/下载/保存的文件经常性出现乱码问题(kubuntu出现问题的可能性更高一些)。而使用默认播放器打开以往的音乐文件(mp3等)时,出现乱码的机会更是接近100%。
这些问题的解决方案在ubuntu使用技巧中已被收录,但是由于问题的普遍性,我认为有必要转移到这里。
转换文件名由GBK为UTF8
sudo apt-get install convmv convmv -r -f cp936 -t utf8 --notest --nosmart *
转换文件内容由GBK到UTF8
iconv -f gbk -t utf8 $i > newfile
转换 mp3 标签编码
sudo apt-get install python-mutagen find . -iname “*.mp3” -execdir mid3iconv -e GBK {} \;