AudioSamples
Fast, simple, and expressive audio in Rust
Overview
Most audio libraries expose samples as raw numeric buffers. In Python,
audio is typically represented as a NumPy array whose dtype is
explicit, but whose meaning is not: sample rate, channel layout,
amplitude range, memory interleaving, and PCM versus floating-point
semantics are tracked externally, if at all. In Rust, the situation is
reversed but not resolved. Libraries provide fast and safe low-level
primitives, yet users are still responsible for managing raw buffers,
writing ad hoc conversion code, and manually preserving invariants
across crates.
AudioSamples is designed to close this gap by providing a strongly typed audio representation that makes audio semantics explicit and enforced by construction. Sample format, numeric domain, channel structure, and layout are encoded in the type system, and all operations preserve or explicitly update these invariants.
The result is an API that supports both exploratory workflows and reliable system-level use, without requiring users to remember hidden conventions or reimplement common audio logic.
AudioSamples is the core data and processing layer of the broader audio related crates. It defines the canonical audio object and the operations that act upon it.
Other crates that build on this foundation:
audio_samples_iofor decoding and encoding audio containers into typed audio objectsaudio_samples_playbackfor device-level outputaudio_samples_pythonfor Python bindings, enabling AudioSamples to act as a type-safe backend for Python workflowshtml_viewfor lightweight visualisation and inspection, generating self-contained HTML outputs suitable for analysis and reporting
NOTE The crate is still a WIP so some features particularly plotting and serialization are not fully complete.
Installation
See the Features for more details.
Quick Start
Generating and mixing signals
This example generates a sine wave in a target sample format, converts it to floating-point samples, and mixes it with a second signal.
use ;
use Duration;
Spectral transforms and analysis
AudioSamples supports spectral and time–frequency transforms via the
AudioTransforms trait, enabled by the spectral-analysis feature.
These operations produce standard frequency-domain and
time–frequency representations used in audio analysis and research.
Enable the feature:
Example: STFT, spectrogram, and MFCC computation
use ;
use Duration;
Features
Default features
statisticsprocessingeditingchannels
Major functionality groups
fftresamplingserializationplotting
Transform and analysis features
spectral-analysisbeat-detection(requiresspectral-analysis)
Plotting sub-features
static-plots(PNG output)
Performance features
parallel-processingsimd(nightly only)mklfixed-size-audio
Utility features
formattingrandom-generationutilities-full
Documentation
Full API documentation is available at https://docs.rs/audio_samples
Examples
A range of examples is included in the repository.
Additional demos include:
- DTMF encoder and decoder
- Basic synthesis examples
- Audio inspection utilities
More advanced I/O and playback examples are provided in the companion crates.
Companion Crates
audio_samples_io
Rust crate providing audio file I/O utilities and helpers.
audio_samples_io is the IO extension of the audio_samples crate.
audio_samples_playback
Device-level playback built on AudioSamples.
audio_samples_python
Python bindings exposing AudioSamples, AudioIO and AudioPlayback.
html_view
A lightweight, cross-platform HTML viewer for Rust.
html_view provides a minimal, ergonomic API for rendering HTML content in a native window, similar in spirit to matplotlib.pyplot.show() for visualisation rather than UI development.
dtmf_tones
A zero-heap, no_std friendly, const-first implementation of the standard DTMF (Dual-Tone Multi-Frequency) keypad used in telephony systems.
This crate provides compile-time safe mappings between keypad keys and their canonical low/high frequencies, along with runtime helpers for practical audio processing.
i24
i24 provides a 24-bit signed integer type for Rust, filling the gap between i16 and i32. This type is particularly useful in audio processing, certain embedded systems, and other scenarios where 24-bit precision is required but 32 bits would be excessive
License
MIT License
Contributing
Contributions are welcome. Please submit a pull request and see CONTRIBUTING.md for guidance.