source:
doc/python_module.rst
@
9530365
Last change on this file since 9530365 was 34abeaf, checked in by , 9 years ago | |
---|---|
|
|
File size: 658 bytes |
aubio Python module
Building the module
From aubio source directory, run the following:
$ cd python
$ ./setup.py build
$ sudo ./setup.py install
Using the module
To use the python module, simply import aubio:
#! /usr/bin/env python import aubio s = aubio.source(sys.argv[1], 0, 256) while True: samples, read = s() print samples if read < 256: break
Check out the python demos for aubio for more examples.
Note: See TracBrowser
for help on using the repository browser.