A crate for working with audio in Rust.
This is made up of several parts, each can be used independently of each other:
Audio buffers provided by this crate have zero or more channels that can be iterated over. A channel is simply a sequence of samples. This can be stored using different topologies as appropriate which will be detailed in the next section.
The following are the three canonical audio formats which are supported by
this crate. All of the examples represent how the two channels [1, 2, 3,
4]
and [5, 6, 7, 8]
are stored:
[1, 2, 3, 4]
and [5, 6, 7, 8]
. Having separate
allocations for each channel can be useful if the topologies of the
buffers keep frequently changing since changing the number of channels
does not require any re-allocation of existing ones.[1, 5, 2, 6, 3, 7, 4, 8]
.[1, 2, 3, 4, 5, 6, 7, 8]
.These all implement the [Buf] and [BufMut] traits, allowing library authors to abstract over any one specific format. The exact channel and frame count of a buffer is known as its topology.
```rust use audio::{BufMut, ChannelMut};
let mut dynamic = audio::dynamic![[0i16; 4]; 2]; let mut interleaved = audio::interleaved![[0i16; 4]; 2]; let mut sequential = audio::sequential![[0i16; 4]; 2];
audio::channel::copyiter(0i16.., dynamic.getmut(0).unwrap()); audio::channel::copyiter(0i16.., interleaved.getmut(0).unwrap()); audio::channel::copyiter(0i16.., sequential.getmut(0).unwrap()); ```
We also support wrapping external buffers so that they can interoperate like other audio buffers.
Play an mp3 file with [minimp3-rs], [cpal], and [rubato] for resampling.
This example can handle with any channel and sample rate configuration.
bash
cargo run --release --package audio-examples --bin play-mp3 -- path/to/file.mp3
```rust use rand::Rng;
let mut buf = audio::buf::Dynamic::
buf.resize_channels(2); buf.resize(2048);
/// Fill both channels with random noise. let mut rng = rand::thread_rng(); rng.fill(&mut buf[0]); rng.fill(&mut buf[1]); ```
For convenience we also provide several macros for constructing various forms of dynamic audio buffers. These should mostly be used for testing.
```rust
let mut buf = audio::buf::Dynamic::
for mut channel in &mut buf { for f in channel.iter_mut() { *f = 2.0; } }
assert_eq! { buf, audio::dynamic![[2.0; 8]; 4], };
assert_eq! { buf, audio::dynamic![[2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0]; 4], }; ```