为什么不能分割.ape文件?


13

我想用一张纸将一张.ape专辑分成多个单独的曲目。为此,我遵循了找到的教程。简而言之,我将此命令传递给终端:.flac.cue

cuebreakpoints example.cue | shnsplit -o flac example.ape

但我得到以下错误:

shnsplit: warning: failed to read data from input file using format: [ape]
shnsplit:          + you may not have permission to read file: [example.ape]
shnsplit:          + arguments may be incorrect for decoder: [mac]
shnsplit:          + verify that the decoder is installed and in your PATH
shnsplit:          + this file may be unsupported, truncated or corrupt
shnsplit: error: cannot continue due to error(s) shown above

不幸的是,我不知道如何克服这个问题。我认为可以丢弃的一件事是文件已损坏,因为我与另一个有相同的错误,.ape并且我对原始.flac文件遵循此过程没有问题。

我怎么解决这个问题?


Answers:


11

shntool 在Ubuntu 14.04上

sudo add-apt-repository -y ppa:flacon
sudo apt-get update
sudo apt-get install -y flacon
shntool split -f *.cue -o flac -t '%n - %p - %t' *.ape

flacon是的GUI shntool,但随附了所需的所有编解码器...

特别是,flacon PPA提供了mac软件包(Monkey的音频控制台),该软件包flacon取决于macCLI工具,它似乎是缺少的主要成分。


1
在Linux Mint 17.2上运行良好,谢谢!
奥宾2015年

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.