loongson/pypi/: simpleaudio-1.0.4 metadata and description

Homepage Simple index Mirror page

Simple, asynchronous audio playback for Python 3.

author Joe Hamilton
author_email jhamilton10@georgefox.edu
classifiers
  • License :: OSI Approved :: MIT License
  • Programming Language :: Python :: 3.3
  • Programming Language :: Python :: 3.4
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Topic :: Multimedia :: Sound/Audio
  • Operating System :: POSIX :: Linux
  • Operating System :: Microsoft :: Windows
  • Operating System :: MacOS :: MacOS X
keywords audio,wave,media,multimedia,sound,alsa,coreaudio,winmm,music
license MIT
File Tox results History
simpleaudio-1.0.4-cp310-cp310-linux_loongarch64.whl
Size
2 MB
Type
Python Wheel
Python
3.10
simpleaudio-1.0.4-cp311-cp311-linux_loongarch64.whl
Size
2 MB
Type
Python Wheel
Python
3.11
simpleaudio-1.0.4-cp312-cp312-linux_loongarch64.whl
Size
2 MB
Type
Python Wheel
Python
3.12
simpleaudio-1.0.4-cp38-cp38-linux_loongarch64.whl
Size
2 MB
Type
Python Wheel
Python
3.8
simpleaudio-1.0.4-cp39-cp39-linux_loongarch64.whl
Size
2 MB
Type
Python Wheel
Python
3.9

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

import simpleaudio.functionchecks as fc

fc.LeftRightCheck.run()

See documentation for more on function checks.

Simple Example

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.