asd
This commit is contained in:
@ -0,0 +1 @@
|
||||
pip
|
@ -0,0 +1,20 @@
|
||||
Copyright (c) 2006 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.
|
@ -0,0 +1,72 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: PyAudio
|
||||
Version: 0.2.14
|
||||
Summary: Cross-platform audio I/O with PortAudio
|
||||
Home-page: https://people.csail.mit.edu/hubert/pyaudio/
|
||||
Author: Hubert Pham
|
||||
License: MIT
|
||||
Classifier: Development Status :: 4 - Beta
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Topic :: Multimedia :: Sound/Audio
|
||||
Description-Content-Type: text/markdown
|
||||
License-File: LICENSE.txt
|
||||
Provides-Extra: test
|
||||
Requires-Dist: numpy; extra == "test"
|
||||
|
||||
<img align="right" width="200" style="margin-left: 3px" src="https://people.csail.mit.edu/hubert/pyaudio/images/snake-300.png">
|
||||
|
||||
# PyAudio
|
||||
|
||||
PyAudio provides Python bindings for PortAudio v19, the cross-platform audio I/O library. With PyAudio, you can easily use Python to play and record audio on a variety of platforms, such as GNU/Linux, Microsoft Windows, and Apple macOS.
|
||||
|
||||
PyAudio is distributed under the MIT License.
|
||||
|
||||
* [Homepage](https://people.csail.mit.edu/hubert/pyaudio/)
|
||||
* [API Documentation](https://people.csail.mit.edu/hubert/pyaudio/docs/)
|
||||
* [PyPi](https://pypi.python.org/pypi/PyAudio)
|
||||
|
||||
## Installation
|
||||
|
||||
See the INSTALLATION file in the source distribution for details. In summary, install PyAudio using `pip` on most platforms.
|
||||
|
||||
### Windows
|
||||
|
||||
```sh
|
||||
python -m pip install pyaudio
|
||||
```
|
||||
|
||||
This installs the precompiled PyAudio library with PortAudio v19 19.7.0 included. The library is compiled with support for Windows MME API, DirectSound, WASAPI, and WDM-KS. It does not include support for ASIO. If you require support for APIs not included, you will need to compile PortAudio and PyAudio.
|
||||
|
||||
### macOS
|
||||
|
||||
Use [Homebrew](https://brew.sh) to install the prerequisite [portaudio](http://portaudio.com) library, then install PyAudio using `pip`:
|
||||
|
||||
```sh
|
||||
brew install portaudio
|
||||
pip install pyaudio
|
||||
```
|
||||
|
||||
### GNU/Linux
|
||||
|
||||
Use the package manager to install PyAudio. For example, on Debian-based systems:
|
||||
|
||||
```sh
|
||||
sudo apt install python3-pyaudio
|
||||
```
|
||||
|
||||
Alternatively, if the latest version of PyAudio is not available, install it using `pip`. Be sure to first install development libraries for `portaudio19` and `python3`.
|
||||
|
||||
### Building from source
|
||||
|
||||
See the INSTALLATION file.
|
||||
|
||||
## Documentation & Usage Examples
|
||||
|
||||
* Read the [API Documentation](https://people.csail.mit.edu/hubert/pyaudio/docs/), or generate it from the source using [`sphinx`](https://www.sphinx-doc.org/).
|
||||
|
||||
* Usage examples are in the `examples` directory of the source distribution, or see the [project homepage](https://people.csail.mit.edu/hubert/pyaudio/).
|
||||
|
||||
## License
|
||||
|
||||
PyAudio is distributed under the MIT License. See LICENSE.txt.
|
@ -0,0 +1,10 @@
|
||||
PyAudio-0.2.14.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
PyAudio-0.2.14.dist-info/LICENSE.txt,sha256=fntVlrMb-hzPD2Nug0TmemhiZeCRwN02DxG2bcgqvFQ,1055
|
||||
PyAudio-0.2.14.dist-info/METADATA,sha256=DUBXjHQyuQQ8wZbm03I5nlJAHuN2Ax5b_CIKzVo_aFc,2610
|
||||
PyAudio-0.2.14.dist-info/RECORD,,
|
||||
PyAudio-0.2.14.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
PyAudio-0.2.14.dist-info/WHEEL,sha256=mGsrPAxuElzJ5Br4Od3Fg9x1dQ6LTVylvi2VvwXAbDw,104
|
||||
PyAudio-0.2.14.dist-info/top_level.txt,sha256=jp8bgmWZh435lFm-DsWc00D0k4xj4iAEmWd1L_TpKk8,8
|
||||
pyaudio/__init__.py,sha256=7V6ZjNJra5wjKcIoklmSU84UmFMrFm23DT1dtWtxXGU,36914
|
||||
pyaudio/__pycache__/__init__.cpython-312.pyc,,
|
||||
pyaudio/_portaudio.cpython-312-x86_64-linux-gnu.so,sha256=SQP5nPR8hU_by19b4dWtLYyX0D4qFAngelPiFmGfjvY,153936
|
@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (75.6.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp312-cp312-linux_x86_64
|
||||
|
@ -0,0 +1 @@
|
||||
pyaudio
|
Reference in New Issue
Block a user