1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#6 in #multi-channel
Used in 2 crates
105KB
688 lines
Aloe-Oboe Flowgraph Resampler
The aloe-oboe-flowgraph-resampler
crate offers a comprehensive suite of tools for multi-channel audio resampling. Its primary focus is on optimizing audio processing pipelines by utilizing sophisticated resampling techniques, including multi-channel resamplers and advanced windowing functions.
Features
- MultiChannelResampler: Core of the crate, facilitating adjustable quality and performance through
MultiChannelResamplerQuality
enum settings. - High-Performance Resampler Implementations: Includes types like
PolyphaseResampler
,SincResampler
, andLinearResampler
, each supporting varying computational efficiency and quality ratios. - Advanced Window Functions: Incorporates
ResamplerKaiserWindow
andHyperbolicCosineWindow
for precise filter design with tunable characteristics. - Flowgraph Support:
FlowgraphRampLinear
provides seamless transition management of control values, minimizing audio artifacts during parameter changes.
Usage
To employ resampling, instantiate a resampler builder such as MultiChannelSamplerBuilder
, configure its properties (e.g., input/output rates), and build the desired resampler type. For example:
let mut builder = MultiChannelSamplerBuilder::default();
builder.set_input_rate(48000)
.set_output_rate(44100)
.set_num_taps(16)
.set_channel_count(2);
let resampler = builder.build();
Technical Insights
The crate centers around precise control of audio sample phase
, leveraging integer ratios of input/output rates for performance gains. It precomputes coefficients for optimal efficiency during frame processing, reducing computational overhead associated with frequently changing ratios.
Contributing
Contributions are welcome through the repository at GitHub.
License
This crate is 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 quite detailed and informative.
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
~626K SLoC