#audio-processing #dsp #stereo #panning #processing #audio

aloe-panner

A digital audio panning processor for stereo audio utilizing customizable panning rules and DSP optimization. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#13 in #stereo


Used in 2 crates

GPL-3.0 license

89KB
434 lines

Aloe Panner Crate

The Aloe Panner Rust crate implements advanced digital audio panning techniques for stereo audio signals, utilizing customizable panning rules for precision sound positioning. This crate offers diverse mappings such as linear, balanced, sinusoidal, and square root mappings to control stereo channels dynamically, catering to nuanced audio processing applications.

Features

  • Panner Rules: Multiple algorithms for panning behavior, including Linear, Balanced, Sinusoidal, and Square Root variants, each delivering unique auditory effects.
  • Customizable Panning Values: Adjusts seamlessly between -1 (full left) and 1 (full right).
  • Optimization for DSP: Designed with Digital Signal Processing principles at its core to ensure optimal performance in audio applications with smooth transitions and efficient computation.

Panner Rules Explained

The panning rules provided by this crate each have distinct characteristics tailored for different auditory outcomes:

  • Linear: Direct proportional volumes.
  • Balanced: Equal power across the pan range.
  • Sin3dB / Sin4.5dB / Sin6dB: Sinusoidal attenuation with varying curves.
  • SquareRoot3dB / SquareRoot4.5dB: Non-linear attenuation using square root functions.

Getting Started

use aloe_panner::{Panner, PannerRule};

fn main() {
    let mut panner = Panner::default();
    panner.set_rule(PannerRule::Sin6dB);
    panner.set_pan(0.5);
    // Processing context would be passed here
}

Contribution

Contributions, bug reports, and feature requests are welcome. Please visit Aloe Panner GitHub for more details.

License

This project is licensed under the GPL-3.0 License.


This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~15–24MB
~384K SLoC