Skip to main content

A package for audio DSP tools

Project description

Audio DSPy

CircleCI codecov CodeFactor Documentation Status

audio_dspy is a Python package for audio signal processing tools.

Current tools include:

  • EQ filter design
  • Nonlinear Processors
  • Sine Sweep Tools
  • Plotting Frequency Responses and Static Curves
  • Converting transfer functions to minimum or linear phase
  • Prony's method, and Prony's method with frequency warping
  • Modal modelling tools

Install using pip:

pip install audio-dspy

Examples

import audio_dspy as adsp
import matplotlib.pyplot as plt

# Plot nonlinear static curves
adsp.plot_static_curve (lambda x : adsp.hard_clipper (x), range=2.5)
adsp.plot_static_curve (lambda x : adsp.soft_clipper (x), range=2.5)
plt.title ('Comparing Nonlinearities')
plt.legend (['Hard Clipper', 'Soft Clipper'])

Pic

# Design and plot EQ filters
fs = 44100
b, a = adsp.design_lowshelf (800, 2.0, 2, fs)
adsp.plot_magnitude_response (b, a, fs=fs)
plt.title ('Low Shelf Filter')

Pic

# Perform level detection
from scipy.io import wavfile

fs, x = wavfile.read('drums.wav')
x = adsp.normalize(x[:,0]) # only take left channel, normalize
plt.plot(x, label='input')

for mode in ['peak', 'rms', 'analog']:
    y = adsp.level_detect(x, fs, mode=mode)
    plt.plot(y, label=mode)

plt.title('Level Detection Example')
plt.xlabel('Time [samples]')
plt.legend()

Pic

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

audio_dspy-0.0.4.tar.gz (20.6 kB view hashes)

Uploaded Source

Built Distribution

audio_dspy-0.0.4-py3-none-any.whl (30.6 kB view hashes)

Uploaded Python 3

Supported by

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