1 unstable release
Uses new Rust 2024
new 0.1.2 | Apr 2, 2025 |
---|
#20 in #real-time-audio
23 downloads per month
Used in 3 crates
(2 directly)
1.5MB
15K
SLoC
Aloe Android Audio
A Rust crate designed for leveraging OpenSL ES audio functionality on Android devices. This library provides a structured interface to manage audio session lifecycles and handle audio in real-time applications. It is especially tailored to the needs of audio processing and media applications necessitating low latency audio interface.
Key Features
- OpenSL ES Integration: Provides traits and structures aligned with Android's OpenSL ES audio functionality.
- Real-time Audio Processing: Structures designed to support real-time audio processing applications with an emphasis on low latency interactions.
- High Performance Paths: Functions facilitating the detection and use of high-performance audio paths, including low latency configurations.
- Session Management: Comprehensive session management allowing for the creation, configuration, and cleanup of audio session resources.
- Support for Multiple Sample Formats: Designed to accommodate both integer and floating-point audio data, allowing applications to utilize the most suitable format for their requirements.
Example Usage
#[cfg(target_os="android")]
pub struct OpenSLAudioDeviceType {
base: AudioIODeviceType,
}
// Usage: Initialize and manage audio session
let mut audio_device = OpenSLAudioDeviceType::default();
audio_device.scan_for_devices();
// Open device interface
let device = audio_device.create_device("output_device_name", "input_device_name");
if device.is_open() {
device.start(...);
}
License
This project is licensed under the GPL-3.0 license.
Note: This README.md file was generated by an AI model and may not be 100% accurate, but it is quite comprehensive.
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
~646K SLoC