linux下使用.cue对flac/ape分轨

需要的工具有flac,mac,shntool ,ubuntu下安装:

[quote]$ sudo apt-get install flac mac shntool[/quote]

对cue索引的flac分轨:

[quote]$ shntool split -t "%n.%p-%t" -f example.cue -o flac example.flac -d output[/quote]

-d 指定分轨后的falc文件的输出目录,不指定的话在当前目录生成

-t 指定输出文件的文件名格式,%n是音轨号,%p是演奏者/艺术家, %t标题

对ape分轨也类似

[quote]$ shntool split -t "%n.%p-%t" -f example.cue -o ape example.ape -d output[/quote]

另外,将ape转换成flac
[quote]$ shnconv -i ape -o flac example.ape[/quote]

或者
[quote]$ mac example.ape temp.wav -d
$ flac temp.wav example.flac[/quote]

你可能感兴趣的:(UBUNTU)