#audio-waveform #oscillator #dsp #waveform #audio #rust

aloe-oscillator

A DSP library for generating customizable audio oscillators for digital signal processing applications, featuring sine, saw, and square waveforms with support for frequency and gain adjustments. 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 #audio-waveform


Used in 4 crates (3 directly)

GPL-3.0 license

1MB
9K SLoC

Aloe Oscillator

Aloe Oscillator is a highly flexible and efficient digital signal processing (DSP) library written in Rust, designed to generate audio signals based on user-supplied mathematical functions. The crate provides robust mechanisms for creating oscillators with customizable parameters, supporting a diverse range of waveform generation techniques including sine, saw, and square waves.

The library is tailored for high-performance applications, offering tools to easily adjust frequency, gain, and mix, making it a powerful tool for audio software development, musical signal processing, and electronic sound synthesis.

Features

  • Configurable Oscillator Types: Supports sine, saw, and square waveforms with or without table-based approximations.
  • Dynamic Frequency Adjustment: Alter the frequency responsively with support for ramping.
  • Signal Manipulation: Apply gain adjustments and mixing, integrating with broader audio processing contexts.
  • High Modularity: The architecture allows seamless integration and expansion.
  • Audio Block Management: Efficient handling of input and output audio blocks ensures effective real-time processing.

Getting Started

To get started, add the following to your Cargo.toml:

[dependencies]
aloe-oscillator = "0.1.0"

Usage

use aloe_oscillator::OscillatorDemoDSP;

fn main() {
    let mut dsp = OscillatorDemoDSP::default();
    dsp.prepare(&spec);
    dsp.process(&context);
    dsp.reset();
}

Documentation

Full API documentation can be found here.

License

This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.

Contribution

Contributions are welcome and appreciated. Please ensure to follow the guidelines outlined in the CONTRIBUTE.md file.

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
~651K SLoC