Programmi necessari:
apt-get install cuebreakpoints shnsplit ffmpeg flac lame libavcodec-extra5 mp3splt mp3splt-gtk
Splittare tramite il file FLAC con il file CUE:
cuebreakpoints *.cue | shnsplit -o flac *.flac
=> Trasformare un file FLAC in MP3:
for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done 
=> Trasformare un file WV in FLAC:
ffmpeg -i *.wv -acodec flac file.flac
=> Trasformare un file APE in FLAC
ffmpeg -i *.ape file.flac
NO da APE to MP3 e poi split tracks - splitta da culo!
ffmpeg -i input.ape -f wav - | lame - output.mp3
mp3splt -s -p th=-50,nt=10 input.mp3
Esiste anche un programma grafico mp3splt-gtk che trasforma i flac direttamente in singole tracce mp3.