1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 3, 2025 |
---|
#90 in #synthesizer
Used in 3 crates
(2 directly)
4MB
32K
SLoC
Aloe-MPE Crate
Aloe-MPE is a Rust library designed for handling MIDI Polyphonic Expression (MPE) in an MPE-compatible environment. It provides robust mechanisms to track and manage expressive MIDI data, allowing complex manipulations for advanced music synthesis. The crate is tailored for musically-inclined developers and researchers aiming to harness the capabilities of MPE.
Features
- MPEInstrument: Manage MPE note states, using pressure, pitchbend, and timbre dimensions for nuanced control.
- MPESynthesizer: Interface for musical synthesis, equipped with voice stealing and polyphony handling.
- User-defined Interfaces: Implement custom audio rendering by creating subclasses of provided interfaces.
- Zone Management: Define and manipulate MIDI zones tailored for expressive control, ensuring compatibility with a wide range of MIDI devices.
Usage
To use the Aloe-MPE crate, include it in your project by adding it to your Cargo.toml
:
[dependencies]
aloe-mpe = "0.1.0"
Import the library into your Rust code:
use aloe_mpe::*;
Example
use aloe_mpe::{MpeInstrument, MpeSynthesizer, MPENote};
let mut synthesizer = MpeSynthesizer::default();
let mut instrument = MpeInstrument::default();
// Configure zones
instrument.set_zone_layout(default_zone_layout());
// Add voices to the synthesizer
synthesizer.add_voice(Box::new(MySynthVoice::default()));
// Set up MIDI processing
let midi_message = // ... MIDI message acquisition logic;
instrument.process_next_midi_event(&midi_message);
// Render audio with the synthesizer
let mut audio_buffer = // ... AudioBuffer instantiation;
synthesizer.render_next_block(&mut audio_buffer, 0, buffer_size);
License
Aloe-MPE is licensed under GPL-3.0. For more information, please refer to LICENSE.
Contribution
Feel free to contribute to the project by creating issues or pull requests. Discussions for feature requests and bug reports are highly encouraged.
This README 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
~26–36MB
~602K SLoC