Created
August 15, 2013 16:38
-
-
Save ksysctl/6242334 to your computer and use it in GitHub Desktop.
Split cue into individual flac files
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
| # dependencies | |
| sudo apt-get install flac bchunk ffmpeg | |
| # convert to a wave file | |
| ffmpeg -i INPUT.ape OUTPUT.wav | |
| # split the .wav into individual tracks | |
| bchunk -w OUTPUT.wav INPUT.cue BASE_FILENAME | |
| # convert to flac | |
| flac --best BASE_FILENAME* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment