1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#6 in #gain
Used in 7 crates
(5 directly)
1MB
7K
SLoC
Aloe Dynamics
The aloe-dynamics
crate provides a powerful suite of Digital Signal Processing (DSP) tools tailored for advanced audio processing tasks such as gating, compressing, limiting, and gain manipulation of audio signals. It is designed for developers and audio engineers who require precise control over audio parameters for professional sound engineering applications.
Components
1. NoiseGate
- Purpose: Silences unwanted noise by attenuating signals below a set threshold. Functions as an expander with low ratios.
- Key Features: Adjustable threshold, ratio, attack time, and release time.
2. Bias
- Purpose: Adds a DC offset to audio samples, useful for asymmetric waveshaping.
- Key Features: Simple bias implementation with range control and smoothing ramp.
3. Gain
- Purpose: Applies gain to audio samples with support for smoothing.
- Key Features: Adjustable gain in linear and decibel values, ramp duration configurations.
4. Limiter
- Purpose: Prevents audio clipping by applying a threshold and release time control featuring two compressors and a hard clipper.
- Key Features: Dual-stage compression with a hard clipper at 0 dB.
5. Compressor
- Purpose: Reduces dynamic range by lowering loud sounds and amplifying quiet sounds.
- Key Features: Adjustable threshold, ratio, attack time, and release time.
Usage
To employ any of these components, instantiate them with the desired SampleType
and configure their parameters using the provided setters. Each component includes a prepare
method to initialize processing and a process
method to apply the DSP operations in a processing context.
Example
use aloe_dynamics::{NoiseGate, Compressor};
let mut noise_gate = NoiseGate::default();
noise_gate.set_threshold(-30.0);
noise_gate.set_ratio(4.0);
noise_gate.set_attack(10.0);
noise_gate.set_release(50.0);
let mut compressor = Compressor::default();
compressor.set_threshold(-20.0);
compressor.set_ratio(3.0);
compressor.set_attack(5.0);
compressor.set_release(100.0);
License
This project is licensed under the terms of the GPL-3.0 license.
Repository
For more details, check the GitHub repository.
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
~41MB
~653K SLoC