Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hamiltron/py-simple-audio
A simple audio playback Python extension - cross-platform, asynchronous, dependency-free
https://github.com/hamiltron/py-simple-audio
Last synced: 3 months ago
JSON representation
A simple audio playback Python extension - cross-platform, asynchronous, dependency-free
- Host: GitHub
- URL: https://github.com/hamiltron/py-simple-audio
- Owner: hamiltron
- License: other
- Created: 2015-08-11T19:30:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-08-13T07:21:01.000Z (6 months ago)
- Last Synced: 2024-11-06T09:04:56.691Z (3 months ago)
- Language: C
- Size: 10.7 MB
- Stars: 159
- Watchers: 1
- Forks: 36
- Open Issues: 45
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-python-audio - simpleaudio
README
NOTE: THIS PROJECT IS ARCHIVED
==============================I no longer have the time to dedicate to maintaining Simpleaudio (which at this point is mostly keeping CI builds working).
This project should be considered archived, meaning that there will be no further updates or builds.
For anyone seriously interested in taking over the project, I would be willing to help in that process.
I would also be willing to revisit maintaining the library should anyone wish to sponsor it.Simpleaudio Package
===================The simplaudio package provides cross-platform, dependency-free audio playback
capability for Python 3 on OSX, Windows, and Linux.MIT Licensed.
`Documentation at RTFD `_
--------------------------------------------------------------Installation
------------Installation (make sure the ``pip`` command is the right one for
your platform and Python version)::pip install simpleaudio
See documentation for additional installation information.
Quick Function Check
--------------------.. code-block:: python
import simpleaudio.functionchecks as fc
fc.LeftRightCheck.run()
See documentation for more on function checks.
Simple Example
--------------.. code-block:: python
import simpleaudio as sa
wave_obj = sa.WaveObject.from_wave_file("path/to/file.wav")
play_obj = wave_obj.play()
play_obj.wait_done()Support
-------For usage and how-to questions, first checkout the tutorial in the
documentation. If you're still stuck, post a question on
`StackOverflow `_
and **tag it 'pysimpleaudio'**.For bug reports, please create an
`issue on Github `_
.Big Thanks To ...
-----------------Jonas Kalderstam
Christophe Gohlke
Tom Christie
Many others for their contributions, documentation, examples, and more.