Vorrei dividere un .ape
album in singole tracce in .flac
formattare utilizzando un .cue
lenzuolo. Per questo ho seguito un tutorial che ho trovato. In breve passo questo comando al terminale:
cuebreakpoints example.cue | shnsplit -o flac example.ape
Ma ottengo il seguente errore:
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
Purtroppo non so come superare questo problema. Una cosa che penso possa essere scartata è che il file è danneggiato poiché ho avuto lo stesso errore con un altro .ape
e ho seguito questa procedura con origine .flac
file senza problemi.
Come posso risolvere questo problema?
Risposta accettata:
shntool
su 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
è una GUI per shntool
, ma viene fornito con tutti i codec di cui ha bisogno...
In particolare il flacon
PPA fornisce il mac
pacchetto (Monkey's Audio Console), su cui flacon
dipende, che ha il mac
Strumento CLI, che sembra essere il principale ingrediente mancante.