1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#7 in #flowgraph
Used in aloe-oboe
445KB
2.5K
SLoC
Aloe Oboe Flowgraph Converter
A sophisticated Rust crate designed for PCM data handling, the aloe-oboe-flowgraph-converter
orchestrates PCM channel, sample rate, and format conversion to maintain optimal latency. Its modular design leverages flow graph architecture to facilitate intricate conversions between varied audio configurations, effectively catering to complex audio-processing scenarios.
Core Features
- Channel Conversion: Flexibly converts between multi-channel interleaved streams and monophonic streams, handling both increases and decreases in channel count without the necessity of mixing.
- Resampling Techniques: Employs advanced resampling strategies through the
SampleRateConverter
component to ensure precision during sample rate transformations. - Latency Optimization: Tailors conversions to uphold latency requirements integral to high-performance audio applications.
- Flowgraph Architecture: Facilitates an interconnected module setup, ensuring seamless data streaming from source to sink.
Example Usage
The crate provides an intuitive API structure for the assembly of the data conversion flowgraph:
use aloe_oboe_flowgraph_converter::DataConversionFlowGraph;
fn main() {
let mut flowgraph = DataConversionFlowGraph::default();
// Example configuration and usage.
// flowgraph.configure(source_stream, sink_stream);
}
Installation
Add the following to your Cargo.toml
:
[dependencies]
aloe-oboe-flowgraph-converter = "0.1.0"
Contributing
The project welcomes contributions, suggestions, and feedback. Please visit our repository for issues and guidance.
License
Licensed under the GPL-3.0 License.
Disclaimer: This README was generated by an AI model and may not be 100% accurate; however, it should be substantially correct.
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
~39MB
~625K SLoC