audioBackends

Contents

audioBackends#

csoundengine.csoundlib.audioBackends()[source]#

Return a list of available audio backends

Return type:

list[AudioBackend]

Returns:

a list of AudioBackend

If available is True, only those backends supported for the current platform and currently available are returned. For example, jack will not be returned in linux if the jack server is not running.

Example

>>> from csoundengine import *
>>> [backend.name for backend in audioBackends()]
['jack', 'pa_cb', 'pa_bl', 'alsa']