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.6.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.6-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pysoniq-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 e6651d741c8a594e9aabf5ae02693e4d7347baa30781f213f0955738e7ad4a4d
MD5 b646644c5b974aa1893028072c7f321c
BLAKE2b-256 e1cfc51c2ca50ec85b30c0803aec30fc5e98b7df3d9cd1138837f9600515a6e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysoniq-0.1.6-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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 87669bd1367d883ca7a97448d1c2196560eee010f6e70607c66b7b04065c3825
MD5 8f80480181134c1ad98f8eb2ca5c2e5f
BLAKE2b-256 deaeed3a51d8618e17991af7b45d338daed69e3079f4e6e5f62b670b6da173ea

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