├── .gitignore ├── CHANGELOG ├── INSTALL ├── MANIFEST.in ├── Makefile ├── README ├── setup.py ├── sphinx ├── conf.py ├── examples.rst └── index.rst ├── src ├── _portaudiomodule.c ├── _portaudiomodule.h └── pyaudio.py └── test ├── error.py ├── play_wave.py ├── play_wave_callback.py ├── play_wave_macosx_channelmap.py ├── record.py ├── system_info.py ├── wire_callback.py ├── wire_full.py └── wire_half.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | src/PyAudio.egg-info 3 | build/ 4 | dist/ 5 | docs/ 6 | MANIFEST 7 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/CHANGELOG -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/INSTALL -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/README -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/setup.py -------------------------------------------------------------------------------- /sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/sphinx/conf.py -------------------------------------------------------------------------------- /sphinx/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/sphinx/examples.rst -------------------------------------------------------------------------------- /sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/sphinx/index.rst -------------------------------------------------------------------------------- /src/_portaudiomodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/src/_portaudiomodule.c -------------------------------------------------------------------------------- /src/_portaudiomodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/src/_portaudiomodule.h -------------------------------------------------------------------------------- /src/pyaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/src/pyaudio.py -------------------------------------------------------------------------------- /test/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/error.py -------------------------------------------------------------------------------- /test/play_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/play_wave.py -------------------------------------------------------------------------------- /test/play_wave_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/play_wave_callback.py -------------------------------------------------------------------------------- /test/play_wave_macosx_channelmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/play_wave_macosx_channelmap.py -------------------------------------------------------------------------------- /test/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/record.py -------------------------------------------------------------------------------- /test/system_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/system_info.py -------------------------------------------------------------------------------- /test/wire_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/wire_callback.py -------------------------------------------------------------------------------- /test/wire_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/wire_full.py -------------------------------------------------------------------------------- /test/wire_half.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jleb/pyaudio/HEAD/test/wire_half.py --------------------------------------------------------------------------------