.ape
シートを使用して、.flac
アルバムを.cue
形式の個々のトラックに分割したいと思います。このため、私は tutorial を見つけました。つまり、このコマンドをターミナルに渡します。
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
残念ながら、私はこの問題を克服する方法を知りません。もう1つの.ape
で同じエラーが発生し、Origin .flac
ファイルでこの手順を問題なく実行したため、ファイルが破損している可能性があると私が考える1つ考えられます。
この問題を解決するにはどうすればよいですか?
shntool
on 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
はshntool
のGUIですが、必要なすべてのコーデックが付属しています...
特に、flacon
[〜#〜] ppa [〜#〜] はmac
パッケージ(Monkeyのオーディオコンソール)を提供し、その上にflacon
depends、これにはmac
CLIツールがあり、欠けている主な要素であると思われます。
エラーメッセージから、 Monkey's Audio Codec がインストールされていないようです。あなたが参照するHOWTOでは依存関係として言及されていませんが、デコードのために.ape
必要です。
ソースは Developers TAB の下部にあるリンクからダウンロードできます。