Skip to main content

Lightweight Pythonic cross-platform audio playback library

Project description

pysoniq

Minimal Pythonic cross-platform audio analysis and playback library.

  • Cross-platform - Windows, macOS, Linux
  • Minimal dependencies - numpy, scipy, wave, ffmpeg
  • Simple API - Play, pause, stop, loop

Installation

pip install pysoniq

WIP: For MP3 support, install ffmpeg: https://ffmpeg.org/

Use in context

import pysoniq
import numpy as np
import wave

# 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_audio('file.wav')  # or .mp3
pysoniq.save_audio('output.wav', audio, sr)

Fourier Analysis

import pysoniq.fourier as pf

S = pf.magnitude_stft(audio, n_fft=2048)
S_db = pf.amplitude_to_db(S)

Platform Requirements

  • Windows: Built-in (winsound)

  • macOS: Built-in (afplay)

  • Linux: ALSA (aplay) - usually pre-installed

  • MP3: ffmpeg (install separately)

Limitations

  • mp3 support is WIP
  • 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.5.tar.gz (13.5 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.5-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pysoniq-0.1.5.tar.gz
Algorithm Hash digest
SHA256 a2fd6932f4a876d71ba7583dd8de56ee58af8d81418d8f3dd7af87e67c840b75
MD5 c6ee5aa35034c0961961e72c09bbb7ad
BLAKE2b-256 fc2ed3c42d63667eb3fc13fc622239aa8bad2bfc5c2bf7d4c59afb81ef6f393a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysoniq-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b8deb24324ca24238c976b20b4ad2fc39fe0533d67db4360aad67ce970d02de2
MD5 369a3b2ecc082a7342126c147237640b
BLAKE2b-256 b841fdc1a8bd290c6825162f69abfb9f6166f96acca176bacd3f90eab718734b

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