Skip to main content

Lightweight, pure-Python cross-platform audio playback library

Project description

pysoniq

Minimal, pure-Python cross-platform audio playback library.

  • Pure Python - No compiled extensions
  • Cross-platform - Windows, macOS, Linux
  • Minimal dependencies - Only numpy
  • Simple API - Play, pause, stop, loop

Installation

pip install pysoniq

Use in context

import pysoniq
import numpy as np

# Play WAV file
pysoniq.play('audio.wav')

# Play as numpy array
sr = 44100
t = np.linspace(0, 1.0, sr)
audio = 0.3 * np.sin(2 * np.pi * 440 * t)
pysoniq.play(audio, samplerate=sr)

# Loop playback
pysoniq.set_loop(True)
pysoniq.play(audio, sr)

# Stop
pysoniq.stop()

Features

Playback

pysoniq.play(data, samplerate)  # Play audio
pysoniq.stop()                   # Stop playback
pysoniq.pause()                  # Pause
pysoniq.resume()                 # Resume

Looping

pysoniq.set_loop(True)   # Enable loop
pysoniq.is_looping()     # Check status

Gain Control

pysoniq.set_gain(0.5)           # 50% volume
pysoniq.set_volume_db(-6.0)     # Set dB
audio = pysoniq.adjust_gain_level(audio, 1.5)

Audio I/O

audio, sr = pysoniq.load('file.wav')
pysoniq.save('output.wav', audio, sr)

Platform Requirements

  • Windows: Built-in (winsound)
  • macOS: Built-in (afplay)
  • Linux: ALSA (aplay) - usually pre-installed

Limitations

  • WAV format only (for now)
  • Pause/resume uses time-based estimation
  • Gain changes apply on next loop iteration

License

MIT

Author

laelume

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysoniq-0.1.1.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pysoniq-0.1.1-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

Details for the file pysoniq-0.1.1.tar.gz.

File metadata

  • Download URL: pysoniq-0.1.1.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for pysoniq-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6e1520e761e3911f1bbf264133fbad167d765da5b8c55447bbcf52f2f01434ee
MD5 3e1019a1841561cf4c5f6d616e6edc2c
BLAKE2b-256 68d27f540e31c105d082ab1e50e534eda161be2792ca29a0f5dbb7ef4ce77b5e

See more details on using hashes here.

File details

Details for the file pysoniq-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pysoniq-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 13.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for pysoniq-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2d4d82684fd0e137f5303c2ae5153ce5800a6eae6057bcd57075cecbb97a278f
MD5 27d62183f0e1e8033607fb9d216f9f50
BLAKE2b-256 b61b771825c4a88b9a22f26c5517c271dc89b43bc2b0032ceb369edb0a35307e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page