Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. PyRtAudio - a python wrapper around RtAudio that allows to perform audio i/o operations in real-time from the python language.
  2. By Antoine Lefebvre, 2011
  3. This software is in the development stage. Do not expect compatibility
  4. with future versions. Comments, suggestions, new features, bug fixes,
  5. etc. are welcome.
  6. This distribution of PyRtAudio contains the following:
  7. - rtaudiomodule.cpp: the python wrapper code
  8. - setup.py: a setup script use to compile and install PyRtAudio
  9. - examples: a single PyRtAudioTest.py script
  10. INSTALLATION
  11. The compilation and installation of the PyRtAudio module is handled by
  12. the python Distribution Utilities ("Distutils"). Provided that your
  13. system has a C++ compiler and is properly configure, the following
  14. command should be sufficient:
  15. >> python setup.py install
  16. Please refer to the distutils documentation for installation problems: http://docs.python.org/distutils/index.html
  17. LEGAL AND ETHICAL:
  18. The PyRtAudio license is the same as the RtAudio license:
  19. PyRtAudio: a python wrapper around RtAudio
  20. Copyright (c)2011 Antoine Lefebvre
  21. Permission is hereby granted, free of charge, to any person
  22. obtaining a copy of this software and associated documentation files
  23. (the "Software"), to deal in the Software without restriction,
  24. including without limitation the rights to use, copy, modify, merge,
  25. publish, distribute, sublicense, and/or sell copies of the Software,
  26. and to permit persons to whom the Software is furnished to do so,
  27. subject to the following conditions:
  28. The above copyright notice and this permission notice shall be
  29. included in all copies or substantial portions of the Software.
  30. Any person wishing to distribute modifications to the Software is
  31. asked to send the modifications to the original developer so that
  32. they can be incorporated into the canonical version. This is,
  33. however, not a binding provision of this license.
  34. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  35. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  36. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  37. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
  38. ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
  39. CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  40. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.