Skip to content

Instantly share code, notes, and snippets.

@norm
Last active September 16, 2015 16:32
Show Gist options
  • Save norm/bce53ad65e00bd504d71 to your computer and use it in GitHub Desktop.
Save norm/bce53ad65e00bd504d71 to your computer and use it in GitHub Desktop.
Custom version of cdparanoia

I have a perl script that automates ripping and converting CDs. It uses cdparanoia to get the audio from the CD. cdparanoia has a nice progress bar when ripping, but also outputs a lot of extra guff. If you use -q to quiet the guff, the progress bar also goes away. So I patch cdparanoia to have an option to preserve the progress bar when quiet.

cd ~/Downloads
wget http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz
wget https://trac.macports.org/export/70964/trunk/dports/audio/cdparanoia/files/patch-paranoia_paranoia.c.10.4.diff
wget https://trac.macports.org/export/70964/trunk/dports/audio/cdparanoia/files/osx_interface.patch 
wget https://gist.githubusercontent.com/norm/969350/raw/9a883730e4632ccf9c242964f179f03b78ee6db7/gistfile1.diff
tar zxvf cdparanoia-III-10.2.src.tgz
cd cdparanoia-III-10.2
patch -f -p1 -i ../osx_interface.patch 
patch -f -p1 -i ../patch-paranoia_paranoia.c.10.4.diff 
patch -f -p1 -i ../gistfile1.diff 
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment