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.7.tar.gz (19.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.7-py3-none-any.whl (21.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pysoniq-0.1.7.tar.gz
Algorithm Hash digest
SHA256 e438d28e06bdd9305ee65afa49ae6d8d2714a53c296d60984cb6ba4aa6d2f076
MD5 258b8ffeb82b322e23fe4dc233b425bc
BLAKE2b-256 cc0619c7d5d5666f6c3cb18aaf68ec188a68181709a839f9447f034365602c1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysoniq-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 5229c484cee8cf2647fa59a7d8589fe4f121ce45e70acc2fd44980eea04dffb3
MD5 c9f3b7b0fd6ec1a81850423035e02231
BLAKE2b-256 8e6759621732d5ae54830f6876193ef607d8e639b8c49a696d1baaeeeeb15278

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