Skip to main content

Audio processing.

Project description

hunterHearsPy

A comprehensive collection of Python utilities for audio processing.

Audio Processing Made Simple

Load and Save Audio Files

Read audio files with automatic stereo conversion and sample rate control:

from hunterHearsPy import readAudioFile, writeWAV

# Load audio with sample rate conversion
waveform = readAudioFile('input.wav', sampleRate=44100)

# Save in WAV format (always 32-bit float)
writeWAV('output.wav', waveform)

Process Multiple Audio Files at Once

Load and process batches of audio files:

from hunterHearsPy import loadWaveforms

# Load multiple files with consistent formatting
array_waveforms = loadWaveforms(['file1.wav', 'file2.wav', 'file3.wav'])

# The result is a unified array with shape (channels, samples, file_count)

Work with Spectrograms

Convert between waveforms and spectrograms:

from hunterHearsPy import stft, halfsine

# Create a spectrogram with a half-sine window
spectrogram = stft(waveform, windowingFunction=halfsine(1024))

# Convert back to a waveform
reconstructed = stft(spectrogram, inverse=True, lengthWaveform=original_length)

Process Audio in the Frequency Domain

Create functions that operate on spectrograms:

from hunterHearsPy import waveformSpectrogramWaveform

def boost_low_frequencies(spectrogram):
    # Boost frequencies below 500 Hz
    spectrogram[:, :10, :] *= 2.0
    return spectrogram

# Create a processor that handles the STFT/ISTFT automatically
processor = waveformSpectrogramWaveform(boost_low_frequencies)

# Apply the processor to a waveform
processed_waveform = processor(original_waveform)

Development

I want:

  • consistent waveforms,
  • consistent spectrograms, and
  • efficient, reliable transformations.

Therefore, I want one package, this package, to manage those objectives with a single source of truth for configurable universal settings.

  • I need good default universal settings.
  • I need an easy way to change a universal setting.
  • I want ad hoc overrides for some or all universal settings.

I don't know a good way to implement user-configurable universal settings. Therefore, as I normally do, I will use my HARDCODED system as a placeholder.

Semiotics

  • channel, rarely channels.
  • time is more generic than samples and often preferred.
  • array is generic.
  • when talking about a NumPy ndarray, write ndarray not array.
  • sampleRate is giving me problems in the "ingest" functions.
    • Regularly review these semiotics until the system is clear.
    • Most of the time, sampleRate is descriptive: this is the sample rate. See writeWAV.
    • In readAudioFile, the parameter is prescriptive: make this the sample rate. Even worse, the attribute of the current sample rate is readSoundFile.samplerate, which is descriptive, of course.
    • However, def resampleWaveform(waveform, sampleRateDesired: float, sampleRateSource: float): has excellent semiotics because it does not use sampleRate.

Preferred packages

  • NumPy
  • scipy
  • hunterMakesPy
  • tqdm (for status messages)
  • cytoolz via the Z0Z_tools package (until it finds a forever home)
  • more_itertools
  • astToolKit
  • pytest

Probably won't need

  • analyzeAudio
  • gmpy2
  • numba
  • platformdirs
  • sympy
  • torch-einops-kit

Not using PyTorch for "business" logic

  • But, I must have torch compatibility.
  • At a minimum, a transformation to and from torch that the user must call.
  • astToolkit easily creates real torch APIs and identifiers, however, for the windowingFunctions module in windowingFunctionsTensor.

Not using librosa

  • Dependency bloated.
  • Slow.
  • Less precise than I want.
  • I generally dislike the API and identifiers.

Disfavored packages

  • pandas

More vectorization

  • Few or no for loops.
  • Few or no for object comprehensions.

Installation

pip install hunterHearsPy

My recovery

Static Badge YouTube Channel Subscribers

CC-BY-NC-4.0

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

hunterhearspy-1.3.0.tar.gz (39.3 kB view details)

Uploaded Source

Built Distribution

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

hunterhearspy-1.3.0-py3-none-any.whl (34.2 kB view details)

Uploaded Python 3

File details

Details for the file hunterhearspy-1.3.0.tar.gz.

File metadata

  • Download URL: hunterhearspy-1.3.0.tar.gz
  • Upload date:
  • Size: 39.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for hunterhearspy-1.3.0.tar.gz
Algorithm Hash digest
SHA256 1fa3ad50445aa62bd6c831c380d052c140ffdf26aa06022fa164c0ea44785586
MD5 75f785577df2d6ef5f0bdbbb63f38f98
BLAKE2b-256 6a5294a4b610be84a65e8bb65531b8a0804231e6854477f8a2772cc9348ce5fb

See more details on using hashes here.

File details

Details for the file hunterhearspy-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: hunterhearspy-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for hunterhearspy-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0a57185caa9c014dd07f9210934f363aab2584c2d737d3c48cf63680b312a3fb
MD5 148014d1b5c7ec32fa6e3ba80fc15579
BLAKE2b-256 ee4ccb64e349e6c882ce2b9de0858d747c0d914cd7012f3b73489b7b6f2e55b1

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