Saturday, 24 October 2015

How to do high-quality CD rips using Linux

  1. Install cdparanoia
  2. Install ripit
  3. Put the following into a script call rip.sh:

  4. drive=$1
    echo Using sr${drive}
    ripit --outputdir ~/Music/iTunes\ Music/Music --device /dev/sr${drive} --quality 0 --vbrmode new --preset insane --coverart 1 --dirtemplate '"$artist/$album"' --loop 1 --threads 4
  5. Do as many concurrent rips as you have CD drives using:

  6. sh rip.sh n

    Where n is the CD drive number.

No comments:

Post a Comment