#atomic #audio #multimedia #levelmeter #referencecounted

aloe-level-meter

Aloe Level Meter is a Rust crate for efficient, reference-counted audio level metering, utilizing atomic operations for concurrent environments. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 2, 2025

#176 in #multimedia

29 downloads per month
Used in 42 crates (2 directly)

GPL-3.0 license

36KB
215 lines

Aloe Level Meter

Aloe Level Meter is a high-performance, reference-counted level metering crate designed for audio processing in Rust. The crate provides an atomic and efficient way to monitor and update audio levels dynamically. It features a LevelMeter struct, utilized to ensure level processing is conducted only when actively referenced, enhancing computational efficiency.

Features

  • Atomic Level Storage: Uses Atomic<f32> for safe concurrent updates without locks.
  • Efficient Level Calculation: Includes optimized processes for calculating and maintaining audio levels, leveraging decay and averaging strategies used in professional audio tools.
  • Reference-Counting: By utilizing Rc<RefCell<LevelMeter>>, the crate ensures the efficient execution of level computations only when necessary.

Example Usage

use aloe_level_meter::{LevelMeter, LevelMeterPtr};
use std::rc::Rc;
use std::cell::RefCell;

let meter = Rc::new(RefCell::new(LevelMeter::default()));
// Update the level with audio data
// meter.borrow_mut().update_level(channel_data, num_channels, num_samples);
// Retrieve current level
// let current_level = meter.borrow().get_current_level();

Functionality

  • update_level: Accepts raw audio channel data and computes the average signal level. Decay is applied to emulate natural audio fade, ensuring the visual level meter reflects realistic audio behaviors.
  • get_current_level: Retrieves the most recent computed audio level as a floating-point value.

Installation

Add this to your Cargo.toml:

[dependencies]
aloe-level-meter = "0.1.0"

License

Licensed under GPL-3.0. See LICENSE for details.

Contribution

We welcome contributions to improve Aloe Level Meter! Please open issues or submit pull requests on GitHub.


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

~13–27MB
~376K SLoC