#signal-processing #audio-processing #processing #signal #audio #flowgraph #node

aloe-oboe-flowgraph-node

Provides an efficient node-based architecture for audio processing flowgraphs with customizable input and output ports for streamlining audio data management. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#4 in #flowgraph


Used in 7 crates (5 directly)

GPL-3.0 license

47KB
347 lines

Aloe-Oboe-Flowgraph-Node

Aloe-Oboe-Flowgraph-Node is a Rust crate designed to facilitate the creation and manipulation of audio processing flowgraphs. This crate provides a robust and efficient way to handle audio stream processing, featuring a modular node-based architecture.

Features

  • Node-Based Architecture: Each node processes audio frames and can be connected via input and output ports, enabling complex audio processing flows.
  • Customizable Processing: Nodes and ports allow for detailed control over audio data handling and can be customized for specific processing needs.
  • Automatic or Manual Data Flow: Data can be set to flow automatically through the graph, or manually pulled by calling relevant methods, providing flexibility in processing approaches.

Key Structures

FlowGraphNode

Represents a basic unit in the flowgraph. Nodes contain input ports and manage the processing of audio data, preventing infinite recursion in cyclic graphs.

FlowGraphPortFloat

Contains a buffer for streaming audio data, allowing connections between nodes to transmit frame data for processing.

FlowGraphPortFloatInput & FlowGraphPortFloatOutput

Manage connections and data flow between nodes, ensuring effective data processing and providing interfaces for connecting and disconnecting nodes.

Example Usage

use aloe_oboe_flowgraph_node::{FlowGraphNode, FlowGraphPortFloatInput, FlowGraphPortFloatOutput};

let mut node = FlowGraphNode::new();
let mut input_port = FlowGraphPortFloatInput::new(&mut node, 2);
let mut output_port = FlowGraphPortFloatOutput::new(&mut node, 2);

input_port.connect(&mut output_port);

node.set_data_pulled_automatically(false);
node.pull_data(1024, 1);

License

This project is licensed under the GPL-3.0 License.

Contribution

Contributions to this project are welcome. Please refer to the repository for more information.


Disclaimer: This README.md file 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

~13–23MB
~371K SLoC