-
-
Save alex-salnikov/0fc5e1a934c5818fa48112c6f99bde74 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 | |
# MacOS | |
# brew install lame | |
# brew install cdparanoia | |
# copy all tracks into separate '.wav' files | |
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