最近楼主继续用mp3听歌,所以试了下转换音乐文件格式
1. 下载mp3fs
https://github.com/khenriks/mp3fs/blob/master/INSTALL.md
下载前,先确保有以下库
fuse (>= 2.6.0)
flac++ (>= 1.1.4)
libvorbis (>= 1.3.0)
lame
libid3tag
还需要以下命令
autoconf
automake
asciidoc
xmllint
xmlto
没有的话,yum install fuse-devel flac-devel libvorbis-devel lame-devel libid3tag-devel
一切准备就绪后,可以开始安装了
git clone https://github.com/khenriks/mp3fs.git
cd mp3fs
./autogen.sh #autoconf不可以
./configure #--prefix=/your/path/bin(将命令添加至环境变量中)
make
make install
2. 使用mp3fs
mp3fs -b 128 /mnt/music /mnt/mp3 -o allow_other,ro
#mp3fs [-options] InPutDir OutPutDir
#InPutDir OutPutDir输入为绝对路径
3. 示例
mp3fs -b 128 /home/louis/music/flac /home/louis/music/mp3 -o allow_other,ro
结果:在/home/louis/music/mp3文件夹下生成mp3格式的目标文件