#trace #ffmpeg #diagnostics #convert

aloe-oboe-trace

A Rust crate for advanced audio manipulation and system-level tracing, designed for audio engineering and diagnostics. 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

#95 in #ffmpeg


Used in aloe-oboe

GPL-3.0 license

365KB
2.5K SLoC

aloe-oboe-trace

A powerful Rust crate designed for advanced audio manipulation, tracing, and diagnostics. With robust conversion functions that seamlessly translate between different audio data formats and properties, this crate is ideal for audio engineering and debugging. It offers precise tracing capabilities for system-level insights, enhancing performance monitoring in complex applications.

Features

  • Convert audio data between float and PCM16 formats.
  • Retrieve system properties as strings or integers.
  • Access SDK and version information.
  • Powerful tracing for debugging and diagnostics.

Installation

Add the following to your Cargo.toml:

[dependencies]
aloe-oboe-trace = "0.1.0"

Usage

use aloe_oboe_trace::{oboe_convert_float_to_pcm16, oboe_convert_pcm_16to_float};

// Example: Convert float to PCM16 audio data
let source: [f32; 1024] = [0.0; 1024];
let mut destination: [i16; 1024] = [0; 1024];
oboe_convert_float_to_pcm16(source.as_ptr(), destination.as_mut_ptr(), 1024);

// Example: Begin and end a trace section
let mut trace = Trace::new();
trace.begin_section("Audio Processing");
trace.end_section();

Documentation

Detailed API documentation is available at GitHub.

License

This project is licensed under the GPL-3.0 License.

Contributing

Issues and pull requests are welcome on GitHub.

Note: 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

~39MB
~624K SLoC