Skip to content

Instantly share code, notes, and snippets.

@AmarPrabhu
Created July 29, 2015 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AmarPrabhu/00f8b576a31891136434 to your computer and use it in GitHub Desktop.
Save AmarPrabhu/00f8b576a31891136434 to your computer and use it in GitHub Desktop.
Split files according to .cue file
#taken from:
#http://danilodellaquila.com/blog/how-to-split-an-audio-.flac-file-using-ubuntu-linux
#install the essential packages
sudo apt-get install cuetools shntool flac
#shnsplit is the program used to split tracks,
#while cuebreakpoints it reads the break-points from file.cue and pipe them to shnsplit.
cuebreakpoints file.cue | shnsplit -o flac file.flac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment