scikits.talkbox
version 0.2.5
Talkbox, a set of python modules for speech/signal processing
Download: http://pypi.python.org/pypi/scikits.talkbox
PyPI: http://pypi.python.org/pypi/scikits.talkbox
Description
Talkbox, to make your numpy environment speech aware !
Talkbox is set of python modules for speech/signal processing. The goal of this
toolbox is to be a sandbox for features which may end up in scipy at some
point. The following features are planned before a 1.0 release:
* Spectrum estimation related functions: both parametic (lpc, high
resolution methods like music and co), and non-parametric (Welch,
periodogram)
* Fourier-like transforms (DCT, DST, MDCT, etc...)
* Basic signal processing tasks such as resampling
* Speech related functionalities: mfcc, mel spectrum, etc..
* More as it comes
I want talkbox to be useful for both research and educational purpose. As such,
a requirement is to have a pure python implementation for everything - for
educational purpose and reproducibility - and optional C for speed.
Installation
PyPI
You can download the latest distribution from PyPI here: http://pypi.python.org/pypi/scikits.talkbox
Easy Install
Install the Easy Install tools. Afterwards you can install scikits.talkbox from the terminal by executing:
sudo easy_install scikits.talkbox
If you prefer to do a local installation, specify an installation prefix:
easy_install --prefix=${HOME} scikits.talkbox
and ensure that your
PYTHONPATH is up to date, e.g.:
export PYTHONPATH=$PYTHONPATH:${HOME}/lib/python2.5/site-packages
This package was discovered in PyPI.