Skip to main content

A custom educational DSP suite featuring a from-scratch iterative FFT implementation - built by Hamd Waseem

Project description

Audiergon

A Python Digital Signal Processing (DSP) processor powered by a custom Cooley-Tukey Fast Fourier Transform implementation.

💻 GitHub Repo | 🐍 PyPI Page | 📝 Docs

Key Features

  • Cooley-Tukey FFT
    • Pure Python iterative implementations of 1D Forward and Inverse Fast Fourier Transforms.
  • Optimised Bit Reversal Permutations
    • Fast bit-reversal indexing using native compiled C-speed NumPy indexing.
  • Overlap-Add Audio EQ Pipeline
    • Complete pipeline for applying Hann windowing, processing frames through an equaliser, and rebuilding raw 16-bit PCM .wav streams without clicking or imaginary artifacts.

Installation

Install the library using pip:

pip install audiergon

Dependencies

  • numpy

Quick Start & API Examples

1 - Basic FFT & Frequency Analysis

Compute the Fourier Transform of a simple signal array and generate its matching frequency bins.

from audiergon import iterative_fft, iterative_fftfreq

# Input array must have a length that is a power of 2
signal = [1.0, 0.5, -0.2, 0.1, 0.8, -0.4, 0.3, -0.1]
sampling_interval = 1.0 / 44100  # 44.1 kHz Sample Rate

# 1. Perform Forward FFT
frequency_coefficients = iterative_fft(signal)

# 2. Compute matching frequencies for the spectrum bins
frequencies = iterative_fftfreq(len(signal), d=sampling_interval)

print("Frequency spectrum coefficients:", frequency_coefficients)
print("Calculated bin frequencies (Hz):", frequencies)

2 - Equalising an Audio File

Process an audio track using the built-in Overlap-Add (OLA) processing pipeline.

from audiergon import process_audio

# Modify the frequency bands using multipliers
output_path = process_audio(
    audio_filepath="in.wav",
    bass_gain=1.5,
    low_mid_gain=1.2,
    mid_gain=1.0,
    high_mid_gain=0.8,
    treble_gain=0.5,
    output="out.wav"
)

The process_audio pipeline requires 16-bit Mono PCM WAV files. You can convert standard formats using ffmpeg:

ffmpeg -i in.mp3 -acodec pcm_s16le -ac 1 -ar 44100 out.wav

API Overview

audiergon.fast_fourier_transform

  • iterative_fft(arr)

    • Computes the 1D Discrete Fourier Transform (DFT).
    • Input: list or numpy.ndarray (length must be a power of 2).
    • Returns: list of complex numbers tracking amplitude and phase.
  • iterative_ifft(arr)

    • Computes the Inverse DFT converting frequencies back to the time domain.
    • Returns: numpy.ndarray scaled by the sequence length.
  • iterative_fftfreq(l, d=1.0)

    • Generates frequency values for each bin location.

audiergon.process

  • process_audio(audio_filepath, bass_gain, low_mid_gain, mid_gain, high_mid_gain, treble_gain, output=None)
    • Applies windowed equalisation filters over an absolute file path.
  • generate_hann_window(frame_size)
    • Generates a list containing real Hann coefficients to smooth frame boundary edges.
  • apply_equaliser(transformed, frame_size, framerate, ...)
    • Sirectly apply scale gains on an existing complex frequency domain segment.

audiergon.bit_reverse

  • bit_reverse(arr, convert_to_complex=False)
    • Applies bit-reversal array permutations optimized with high-performance NumPy vector operations.

License

Audiergon is open-source software licensed under the MIT License.

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

audiergon-0.1.2.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

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

audiergon-0.1.2-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

Details for the file audiergon-0.1.2.tar.gz.

File metadata

  • Download URL: audiergon-0.1.2.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for audiergon-0.1.2.tar.gz
Algorithm Hash digest
SHA256 71e115247a126d115c8ee1ee9489d38bb3e96d1ff29041812b6f361699d41282
MD5 e17942caf961ee6d9985f88524937e3e
BLAKE2b-256 895b4757771052c13d14268ccf2c42acf5c4126be3f2bc8533535598a4edbbb2

See more details on using hashes here.

File details

Details for the file audiergon-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: audiergon-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 9.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for audiergon-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2c8e7e7a878a976572e30b0bb35b6dd59d131a8ab430d11a3f471e5cc17e3846
MD5 ff4353970ed34232a4b294341a22b34f
BLAKE2b-256 fb725793a42bd5ab5dbc75e1ad1fdbcef0eae73e8145545e6af42835477bdc2d

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