forked from joshelser/Concert
-
Notifications
You must be signed in to change notification settings - Fork 2
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.gitDependencies: 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
makeI 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
makeWhich seemed to work well.
make installthen from
cd python-audio-tools
make
make installand
audiotools-configwill tell you what audio codecs you have installed, and what packages you can install to get the rest of them.