No description
Find a file
Hubert Pham 7ec435d961 Fix deadlock when calling Pa_StopStream in callback mode.
Deadlock due to callback thread waiting for the GIL while the
GIL is still held by thread calling Pa_StopStream.  The fix is
to release the GIL before calling Pa_StopStream.

Much gratitude to Jason Roehm for the patch!
2014-02-16 15:49:38 -08:00
sphinx Update version. 2012-10-20 21:39:47 -04:00
src Fix deadlock when calling Pa_StopStream in callback mode. 2014-02-16 15:49:38 -08:00
test Return raw bytes of audio device name to allow user to manage encoding. 2014-02-15 22:09:50 -08:00
.gitignore Add .gitignore. 2010-08-14 17:56:35 -04:00
CHANGELOG Update version. 2012-10-20 21:39:47 -04:00
INSTALL Update version number, installation instructions, and changelog. 2010-08-14 16:59:57 -04:00
Makefile Update version. 2012-10-20 21:39:47 -04:00
MANIFEST.in Update MANIFEST.in to include sphinx directory. 2012-10-20 21:35:19 -04:00
README Update version. 2012-10-20 21:39:47 -04:00
setup.py Conform to C89/ANSI standard to compile on MSVC. 2012-11-14 21:54:36 -05:00

======================================================================
PyAudio v0.2.7: 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-2012 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.

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