SciKits

Quick search

scikits.samplerate

version 0.3.3

A python module for high quality audio resampling

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

Description

Samplerate is a small python package to do high quality audio resampling for
data in numpy arrays; IOW, it is a matlab resample replacement.

Samplerate is a wrapper around the Secret Rabbit Code from Erik de Castro Lopo
(http://www.mega-nerd.com/SRC/), which has high quality converters based on the
work of J.O Smith from CCRMA (see
http://ccrma.stanford.edu/~jos/resample/optfir.pdf)

Installation

PyPI

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

Easy Install

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

sudo easy_install scikits.samplerate

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

easy_install --prefix=${HOME} scikits.samplerate
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/samplerate

This package was discovered in svn.scipy.org.