#audio-effect #processor #effect #delay #interpolation #audio

aloe-delay-processor

aloe-delay-processor provides advanced audio delay processing capabilities with multiple interpolation methods. 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

#8 in #effect-audio


Used in 2 crates

GPL-3.0 license

345KB
2K SLoC

Aloe Delay Processor

The aloe-delay-processor crate implements a sophisticated audio processing system for delay effects. It features customizable delay lines with a choice of interpolation methods, allowing refined control over sound manipulation. Specific interpolation methods include NoInterpolation, Linear, Lagrange3rd, and Thiran, each offering distinct audible characteristics. The crate supports high precision float sample processing, utilizing the FloatSample trait for generic flexibility.

Features

  • Direct Delay Processing: Process audio signals directly using a range of delay line interpolations.
  • Delay Effect Processing: More complex signal processing with feedback capability, lowpass filtering, and custom mix settings.
  • High precision filtering: Utilizes FirstOrderTPTFilters and DryWetM mixers for superior sound shaping.
  • Configurable Interpolation: Choose between multiple interpolation methods for delay lines to suit your audio needs.

Usage

First, include the crate in your Cargo.toml:

[dependencies]
aloe-delay-processor = "0.1.0"

Here's a basic example of how you might utilize the DirectDelayProcessor:

use aloe_delay_processor::{DirectDelayProcessor, ProcessSpec};

fn main() {
    let mut processor = DirectDelayProcessor::default();
    let process_spec = ProcessSpec::default(); // Define your process spec as needed

    processor.prepare(&process_spec);
    // Assumed usage in an audio processing context
}

Advanced users can configure every aspect of the delay effect by precise management of the delay line specifics and mixer settings. Explore more detailed processing scenarios in the source documentation.

License

This project is licensed under the GPL-3.0 License. See the LICENSE file for more details.

Contributing

Contributions are welcome. Feel free to open issues or submit pull requests for improvements.

Note

This README.md was generated by an AI model and may not be entirely accurate, but it should be relatively well-suited to describe the crate's functionalities.

Repository

GitHub Repository

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

~41MB
~650K SLoC