source: python/README @ f2ce0fc

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since f2ce0fc was 5bec75d, checked in by Paul Brossier <piem@piem.org>, 8 years ago

python/README: remove note about libaubio install

  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[f719589]1Python aubio module
2===================
3
[e794a80]4This module wraps the aubio library for Python using the numpy module.
[f719589]5
[e794a80]6Before compiling this module, you must have compiled libaubio.
7
8For more information about how this module works, please refer to the [Python/C
9API Reference Manual] (http://docs.python.org/c-api/index.html) and the
10[Numpy/C API Reference](http://docs.scipy.org/doc/numpy/reference/c-api.html).
[f719589]11
[49505f7]12Compiling python aubio
13----------------------
[f719589]14
[e794a80]15After libaubio has been build successfully, and provided Python development
16headers and numpy can be found on your system, you should be able to build the
17aubio Python module:
18
19    $ ./setup.py build
20
21To find out more about `setup.py` options:
22
23    $ ./setup.py --help
24
25Installing
26----------
27
28To install the Python module:
[f719589]29
[e794a80]30    $ ./setup.py install
[c3d286c]31
[e794a80]32Using the Python module
33-----------------------
34
35Once the aubio library and the Python module are installed, you will be able to
36import the aubio module:
37
38    $ python
39    [...]
40    >>> import aubio
41    >>>
42
43Alternatively, you may want to use the Python module without installing it by
44setting PYTHONPATH:
[92c83ccc]45
46    $ export PYTHONPATH=$PYTHONPATH:$PWD/`ls -rtd build/lib.* | head -1`:$PWD/tests
47
[e794a80]48Testing the Python module
49-------------------------
50
51Once both the C library and the Python module have been built correctly, and
52after you have installed them (or setting the environment variable correctly),
53you should be able to run the tests:
[92c83ccc]54
55    $ ./tests/run_all_tests
56
57And to try out the demos:
58
[1e18df6]59    $ ./demos/demo_source.wav /path/to/sound/sample.wav
[f719589]60
[e794a80]61You need to install additional modules to run some of the demos. For
62instance, several demos use [matplotlib](http://matplotlib.org/) to draw plots.
63Some more demos use [PySoundCard](https://github.com/bastibe/PySoundCard) to
64play and record sounds.
Note: See TracBrowser for help on using the repository browser.