Created
July 29, 2015 09:25
-
-
Save AmarPrabhu/00f8b576a31891136434 to your computer and use it in GitHub Desktop.
Split files according to .cue file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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