1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 2, 2025 |
---|
#9 in #audio-devices
27 downloads per month
Used in 41 crates
(19 directly)
2MB
16K
SLoC
Aloe Audio Device Manager
Aloe Audio Device Manager is a sophisticated library aimed at managing audio I/O and MIDI devices seamlessly within Rust applications. It facilitates the creation, management, and configuration of various types of audio devices, leveraging the underlying capabilities of platforms like WASAPI, ASIO, CoreAudio, and others.
Features
- WASAPI Device Modes: Offers multiple modes such as shared, exclusive, and sharedLowLatency for fine-grained audio device control.
- Device Event Management: Enables subscribing to device change events to dynamically respond to hardware changes.
- Comprehensive Device Handling: Provides interfaces for scanning devices, managing audio device classes, and initializing devices with user-specified options.
- Audio and MIDI Device Management: Capable of managing audio and MIDI I/O simultaneously while maintaining smooth operation and configuration transitions.
- State Preservation: Serialization support for saving and reloading device setup configurations as XML.
Usage
The library separates functionality into modules corresponding to different device types and management aspects, allowing the user to interact with only the necessary components:
use aloe_audio_device_manager::{AudioDeviceManager, AudioIODeviceType};
let mut manager = AudioDeviceManager::default();
manager.initialise_with_default_devices(2, 2).unwrap();
// Register a callback, scan devices, or create a WASAPI device using specific modes.
For complete usage, including event listener registration and device-specific operations, refer to the module documentation and examples in the repository.
Configuration
- Authors: klebs tpk3.mx@gmail.com
- Edition: Rust 2024
- License: GPL-3.0
- Repository: aloe-rs
Contribution
Contributions and suggestions are welcome! Please follow the issues and pull request guidelines in the GitHub repository.
Note: This README was generated by an AI model and may not be 100% precise, but aims to be informative and useful.
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–40MB
~590K SLoC