Skip to content

Instantly share code, notes, and snippets.

@timstermatic
Created November 9, 2013 11:31
Show Gist options
  • Save timstermatic/7384516 to your computer and use it in GitHub Desktop.
Save timstermatic/7384516 to your computer and use it in GitHub Desktop.
Rip a CD to MP3 with cdparanoia
# 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