Skip to content

py audio tools setup

colinsullivan edited this page Jul 28, 2011 · 13 revisions

Here is some stuff I had to do to get the python-audio-tools to work. I am using MacPorts as a package manager, and installing stuff in a slightly different location. If anyone else is doing this as well, let me know if you need help.

git clone git://github.com/tuffy/python-audio-tools.git

Dependencies: I had to install the following packages:

  • libcdio-paranoia-dev (had to be installed on Ubuntu)
  • libcdio-devel (was not available via MacPorts, so had to do the following to install from source):
git clone git://git.sv.gnu.org/libcdio.git
cd libcdio
./autogen.sh   ##This creates different ./configure with development stuff I guess
./configure
make

I got an error here at one point:

libcdio.texi:4: @include 'version.texi': No such file or directory.

So instead, ran

./configure --enable-maintainer-mode
make

Which seemed to work well.

make install

then from

cd python-audio-tools
make
make install

and

audiotools-config

will tell you what audio codecs you have installed, and what packages you can install to get the rest of them.

Clone this wiki locally