SciKits

Quick search

scikits.audiolab

version 0.10.2

A python module to make noise from numpy arrays

Download: http://www.ar.media.kyoto-u.ac.jp/members/david/softwares/audiolab
Homepage: http://www.ar.media.kyoto-u.ac.jp/members/david/softwares/audiolab
PyPI: http://pypi.python.org/pypi/scikits.audiolab
Source Repository: http://svn.scipy.org/svn/scikits/trunk/audiolab
People: David Cournapeau

Description

Audiolab is a python package for audio file IO using numpy arrays. It supports
many different audio formats, including wav, aiff, au, flac, ogg, htk. It also
supports output to audio device (Mac OS X and Linux only).

For simplicity, a matlab-like API is provided for simple import/export; a more
complete API is also available.

Audiolab is essentially a wrapper around Erik de Castro Lopo's excellent
libsndfile:

http://www.mega-nerd.com/libsndfile/

LICENSE: audiolab is licensed under the LGPL, as is libsndfile itself. See
COPYING.txt for details.

2006-2008, David Cournapeau

Installation

PyPI

You can download the latest distribution from PyPI here: http://pypi.python.org/pypi/scikits.audiolab

Easy Install

Install the Easy Install tools. Afterwards you can install scikits.audiolab from the terminal by executing:

sudo easy_install scikits.audiolab

If you prefer to do a local installation, specify an installation prefix:

easy_install --prefix=${HOME} scikits.audiolab
and ensure that your PYTHONPATH is up to date, e.g.:
export PYTHONPATH=$PYTHONPATH:${HOME}/lib/python2.5/site-packages

Source code

You can get the latest sources from the repository using

svn checkout http://svn.scipy.org/svn/scikits/trunk/audiolab

This package was discovered in svn.scipy.org.