web-dev-qa-db-ja.com

.apeファイルを分割できないのはなぜですか?

.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つ考えられます。

この問題を解決するにはどうすればよいですか?

13
Chris Daniels

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

flaconshntoolのGUIですが、必要なすべてのコーデックが付属しています...

特に、flacon[〜#〜] ppa [〜#〜]macパッケージ(Monkeyのオーディオコンソール)を提供し、その上にflacondepends、これにはmac CLIツールがあり、欠けている主な要素であると思われます。

エラーメッセージから、 Monkey's Audio Codec がインストールされていないようです。あなたが参照するHOWTOでは依存関係として言及されていませんが、デコードのために.ape必要です。

ソースは Developers TAB の下部にあるリンクからダウンロードできます。

1
Anthon