1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#9 in #audio-waveform
Used in 5 crates
(2 directly)
2MB
20K
SLoC
Aloe Visualizer
Aloe Visualizer is a Rust library offering a straightforward solution for rendering scrolling waveforms from audio data. Ideal for rapid development scenarios that require quick insight into audio signal visualizations, it eschews complexity for simplicity and ease of use by providing essential functionality through a basic API.
Features
- Component Design:
AudioVisualiserComponent
forms the core, encapsulating methods to manage waveform visualization over multiple channels. - Customization: Modify buffer size, channel count, and repaint rate. Basic color settings enable straightforward aesthetic adjustments.
- Data Handling: Use methods like
push_buffer
andpush_sample
to feed audio data into the visualizer, leveraging its efficient internal data management systems. - Painting Interface: Allows overriding the default
paint
method to suit bespoke visualization needs, with tools for converting waveform data into drawable paths.
Usage
Start by creating an instance of the AudioVisualiserComponent
with the desired number of channels:
let mut visualizer = AudioVisualiserComponent::new(2);
visualizer.set_samples_per_block(256);
visualizer.set_buffer_size(1024);
Feed audio data using:
visualizer.push_buffer(&audio_buffer);
Customize appearance:
visualizer.set_colours(Colour::black(), Colour::white());
Example
The visualizer serves as an exemplary addition to audio processing applications where visual feedback on waveform dynamics is beneficial, such as audio editors or real-time monitoring tools.
License
This project is licensed under the GPL-3.0 License.
README.md file generated by an AI model; content accuracy is generally reliable but not guaranteed.
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
~25–35MB
~576K SLoC