Python wrapper for PortAudio's ring buffer
Project description
The ring buffer functionality is typically not included in binary distributions of PortAudio, therefore most Python wrappers don’t include it, either.
The pa_ringbuffer module provides only a Python wrapper, the actual PortAudio ring buffer code has to be compiled separately, see Usage. It can be used on any Python version where CFFI is available.
This module is designed to be used together with the sounddevice module (it might work with other modules, too) for non-blocking transfer of data between the main Python program and an audio callback function which is implemented in C or some other compiled language.
Usage
This module is not meant to be used on its own, it is only useful in cooperation with another Python module using CFFI. For an example, have a look at https://github.com/spatialaudio/python-rtmixer.
You can get the Python code from PyPI, for example in your setup.py file:
from setuptools import setup
setup(
name=...,
version=...,
author=...,
...,
setup_requires=['CFFI', 'pa_ringbuffer'],
install_requires=['pa_ringbuffer'],
...,
)
Alternatively, you can just copy the file src/pa_ringbuffer.py to your own source directory and import it from there.
You can build your own CFFI module like described in http://cffi.readthedocs.io/en/latest/cdef.html, just adding a few more bits:
from cffi import FFI
import pa_ringbuffer
ffibuilder = FFI()
ffibuilder.cdef(pa_ringbuffer.cdef())
ffibuilder.cdef("""
/* my own declarations */
""")
ffibuilder.set_source(
'_mycffimodule',
'/* my implementation */',
sources=['portaudio/src/common/pa_ringbuffer.c'],
)
if __name__ == '__main__':
ffibuilder.compile(verbose=True)
Note that the following files must be available to the compiler:
https://app.assembla.com/spaces/portaudio/git/source/master/src/common/pa_ringbuffer.c
https://app.assembla.com/spaces/portaudio/git/source/master/src/common/pa_ringbuffer.h
https://app.assembla.com/spaces/portaudio/git/source/master/src/common/pa_memorybarrier.h
For your own C code, you might need some definitions from the main PortAudio header:
Once you have compiled your extension module (with the help of CFFI), you can use something like this to get access to the RingBuffer class:
import pa_ringbuffer
from _mycffimodule import ffi, lib
RingBuffer = pa_ringbuffer.init(ffi, lib)
API Reference
There are only two functions:
pa_ringbuffer.cdef()
This function returns a string containing C declarations from the file pa_ringbuffer.h, which can be used as argument to CFFI’s cdef() function (see Usage above). Note that the returned declarations are slightly different when called on a macOS/Darwin system.
pa_ringbuffer.init(ffi, lib)
This function returns the RingBuffer class which is associated with the CFFI instance given by ffi and lib.
Creating the Documentation
The documentation of the RingBuffer class is not available separately. If you are using Sphinx, you can seamlessly include the documentation of the RingBuffer class with your own documentation. An example for this can be found at https://github.com/spatialaudio/python-rtmixer, the generated documentation is available at http://python-rtmixer.readthedocs.io/#rtmixer.RingBuffer.
You’ll need to have the autodoc extension activated in your conf.py:
extensions = [
...,
'sphinx.ext.autodoc',
...,
]
And somewhere within your module documentation, you should add this:
.. autoclass:: RingBuffer
:inherited-members:
Before that, you might have to use the currentmodule directive to select your own module.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pa_ringbuffer-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2f78e66f6dee8e3ab7fb45f2b33c64ac693e1f68d5646af1df18a7070b4c271 |
|
MD5 | 9a438debf75bf5cf86883494ea9efff1 |
|
BLAKE2b-256 | 860ea253612298e83fe047f86b18b8db30e8c71923a20d569e40b8a9691a30aa |