Revision [16336]
This is an old revision of cdparanoia made by coolpup on 2011-07-04 01:36:12.
Cdparanoia compact disc digital audio extraction
software software package(s)
http://distro.ibiblio.org/quirky/pet_packages-wary5/cdparanoia-III-10.2-w5.pet
http://distro.ibiblio.org/quirky/pet_packages-wary5/cdparanoia-III_DEV-10.2-w5.pet
Extract an entire audio (speech) compact disc to /mnt/home/audio as a single WAV file and then create an OGG file format version (requires the latest available version of vorbistools vorbis-tools):
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 (requires the latest available version of vorbistools vorbis-tools):
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 (requires the latest available version of vorbistools vorbis-tools):
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 (requires the latest available version of vorbistools vorbis-tools):
mkdir -p /mnt/home/audio && cd /mnt/home/audio && cdparanoia -vBsz && for i in *.wav; do oggenc -q 6 "$i"; done
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
Categories
CategoryMultimediaCategorySoftware