linux - Compile PyAudio without Jack, without PulseAudio, etc -


i want compile pyaudio few layers possible. want use portaudio (needed pyaudio) uses alsa, but not jack, not pulseaudio, not else.

i have pyaudio <--> portaudio <--> alsa , nothing more.

when doing:

git clone http://people.csail.mit.edu/hubert/git/pyaudio.git cd pyaudio sudo python setup.py install 

it link library jack, etc. don't want.

how compile pyaudio nothing else portaudio , alsa?

reason: debug problems, might related other layers.

when install pyaudio showed it, use portaudio library installed on system (e.g. via apt-get).

if want portaudio without jack, you'll have sources http://www.portaudio.com/ , compile using:

./configure --without-jack 

i think pulseaudio isn't directly supported anyway. if don't want pulseaudio interfere, may easiest uninstall it.


Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

gradle error "Cannot convert the provided notation to a File or URI" -

python - NameError: name 'subprocess' is not defined -