Skip to content

Instantly share code, notes, and snippets.

@alex-salnikov
Forked from timstermatic/gist:7384516
Last active August 23, 2023 17:18
Show Gist options
  • Save alex-salnikov/0fc5e1a934c5818fa48112c6f99bde74 to your computer and use it in GitHub Desktop.
Save alex-salnikov/0fc5e1a934c5818fa48112c6f99bde74 to your computer and use it in GitHub Desktop.
Rip a CD to MP3 with cdparanoia
# 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