Created
November 9, 2013 11:31
-
-
Save timstermatic/7384516 to your computer and use it in GitHub Desktop.
Rip a CD to MP3 with cdparanoia
This file contains 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
# install cdparanoia e.g apt-get install cdparanoia | |
# rip tracks individually | |
cdparanoia -B | |
# convert to mp3 in a loop | |
for t in track{01..18}*.wav; do lame $t; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment