需要的工具有flac,mac,shntool ,ubuntu下安装:
$ sudo apt-get install flac mac shntool
对cue索引的flac分轨:
$ shntool split -t "%n.%p-%t" -f example.cue -o flac example.flac -d output
-d 指定分轨后的falc文件的输出目录,不指定的话在当前目录生成
-t 指定输出文件的文件名格式,%n是音轨号,%p是演奏者/艺术家, %t标题
对ape分轨也类似
$ shntool split -t "%n.%p-%t" -f example.cue -o ape example.ape -d output
另外,将ape转换成flac
$ shnconv -i ape -o flac example.ape
或者
$ mac example.ape temp.wav -d
$ flac temp.wav example.flac
$ sudo apt-get install flac mac shntool
对cue索引的flac分轨:
$ shntool split -t "%n.%p-%t" -f example.cue -o flac example.flac -d output
-d 指定分轨后的falc文件的输出目录,不指定的话在当前目录生成
-t 指定输出文件的文件名格式,%n是音轨号,%p是演奏者/艺术家, %t标题
对ape分轨也类似
$ shntool split -t "%n.%p-%t" -f example.cue -o ape example.ape -d output
另外,将ape转换成flac
$ shnconv -i ape -o flac example.ape
或者
$ mac example.ape temp.wav -d
$ flac temp.wav example.flac