Showing posts with label oggenc. Show all posts
Showing posts with label oggenc. Show all posts

Wednesday, March 21, 2007

Command line CD ripping on Linux

Comamnd line CD Ripping on Linux (Kubuntu 6.10)

#> cdparnoia -vsQ
lists all the tracks

#> cdparnoia 1-10
rips tracks from 1 to 10

#> cdparanoia -B -Z
(rips all no data check is done, seems to be much faster with old, broken CDs!)

----

(assume bash)

#> apt-get install vorbis-tools

#> oggenc -o track01.cdda.ogg track01.cdda.wav

#> foreach fle in *wav; do oggenc -o $fle.ogg $fle; done