Skip to content

iovsiann/pyaudio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyAudio for PyPy3

pypy3 -m pip install pyaudio fails to install PyAudio for PyPy3. This is because PyPy3 C-API is slightly different from CPython C-API.

Install PortAudio v19 headers:

sudo apt install libportaudio19-dev

Install PyAudio for PyPy3:

git clone https://github.com/iovsiann/pyaudio
cd pyaudio
pypy3 -m pip install .

Original PyAudio

Original source code at http://people.csail.mit.edu/hubert/pyaudio/

======================================================================
PyAudio v0.2.8: Python Bindings for PortAudio.
======================================================================

See: http://people.csail.mit.edu/hubert/pyaudio/

PyAudio provides Python bindings for PortAudio v19, the cross-platform
audio I/O library. Using PyAudio, you can easily use Python to play
and record audio on a variety of platforms.

See INSTALL for compilation hints.

======================================================================

PyAudio : Python Bindings for PortAudio.

Copyright (c) 2006-2014 Hubert Pham

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

======================================================================

About

PyAudio 0.2.11 fixed to run in pypy3

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published