Împărțire fișier .flac în track-uri
sudo apt-get install cuetools shntool flac cuebreakpoints file.cue | shnsplit -o flac file.flac
Conversie fișiere .flac în .mp3
sudo apt-get install flac sudo apt-get install lame for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done
Redenumire fișiere .mp3 după tag-uri
sudo apt-get install lltag lltag --cddb-query "nume-artist" --yes *.mp3 lltag *.mp3 --rename "%a - %t.mp3"