(image: http://www.xiph.org/paranoia/parabanner.gif)

Cdparanoia

compact disc audio extraction

Source code: http://downloads.xiph.org/releases/cdparanoia/

Binary code:

Dependencies: +bzip2,+grep,+tar

Creating files with, or converting files to, OGG format requires vorbistools vorbis-tools.

Extract an entire audio (speech) compact disc to /mnt/home/audio as a single WAV file and then create an OGG file format version:
mkdir -p /mnt/home/audio && cd /mnt/home/audio && cdparanoia -vsz "1-" singlefile.wav && oggenc -q 0 *.wav

Extract an entire audio (music) compact disc to /mnt/home/audio as a single WAV file and then create an OGG file format version:
mkdir -p /mnt/home/audio && cd /mnt/home/audio && cdparanoia -vsz "1-" singlefile.wav && oggenc -q 6 *.wav

Extract an entire 'audio (speech) compact disc to /mnt/home/audio as individually separate WAV files and then from which are created OGG file format versions:
mkdir -p /mnt/home/audio && cd /mnt/home/audio && cdparanoia -vBsz && for i in *.wav; do oggenc -q 0 "$i"; done

Extract an entire audio (music) compact disc to /mnt/home/audio as individually separate WAV files and then from which are created OGG file format versions:
mkdir -p /mnt/home/audio && cd /mnt/home/audio && cdparanoia -vBsz && for i in *.wav; do oggenc -q 6 "$i"; done

http://www.t2-project.org/packages/cdparanoia.html
http://www.xiph.org/paranoia/
http://www.xiph.org/paranoia/manual.html
http://www.xiph.org/paranoia/faq.html
http://www.cyberciti.biz/faq/linux-ripping-and-encoding-audio-files/
http://linuxreviews.org/howtos/cdrecording/
http://linux.about.com/od/linux101/l/blnewbie6_6.htm
http://nigelcoldwell.co.uk/audio/
http://en.wikipedia.org/wiki/WAV
http://puppylinux.org/wikka/software



Categories
CategoryMultimedia
CategorySoftware
There are no comments on this page.
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki