The ambisonic library provides 3D sound scene support on top of rodio
.
It allows positioning and moving sound sources freely in 3D space around a virtual listener,
and playing the resulting spatial mix in real-time over a sound card.
rodio
sound sources and place them in spaceAdd this to your Cargo.toml
:
toml
[dependencies]
ambisonic = "0.4.0"
Ambisonic can generate a sine wave for you:
```rust use std::thread::sleep; use std::time::Duration; use ambisonic::{rodio, AmbisonicBuilder};
let scene = AmbisonicBuilder::default().build(); let source = rodio::source::SineWave::new(440); let mut sound = scene.play_at(source, [50.0, 1.0, 0.0]);
// move sound from right to left sound.setvelocity([-10.0, 0.0, 0.0]); for i in 0..1000 { sound.adjustposition([50.0 - i as f32 / 10.0, 1.0, 0.0]); sleep(Duration::frommillis(10)); } sound.setvelocity([0.0, 0.0, 0.0]); ```
Since Ambisonic is built ontop of Rodio, any file format that Rodio supports can also be loaded and positioned in 3D space.
```rust let file = std::fs::File::open("path/to/your/file.wav").unwrap(); let source = rodio::Decoder::new(std::io::BufReader::new(file)).unwrap(); let source = source.repeat_infinite();
let mut sound = scene.playat(source.convertsamples(), [50.0, 1.0, 0.0]);
// move sound from right to left sound.setvelocity([-10.0, 0.0, 0.0]); for i in 0..1000 { sound.adjustposition([50.0 - i as f32 / 10.0, 1.0, 0.0]); sleep(Duration::frommillis(10)); } sound.setvelocity([0.0, 0.0, 0.0]); ```
ambisonic
is built around the concept of an intermediate representation of the sound field,
called B-format. The B-format describes what the listener should hear, independent of
their audio playback equipment. This leads to a clear separation of audio scene composition and
rendering. For details, see Wikipedia.
In its current state, the library allows spatial composition of single-channel rodio
sources
into a first-order B-format stream. The chosen renderer then decodes the B-format stream
into audio signals for playback.
Currently, the following renderers are available:
Although at the moment only stereo output is supported, the B-format abstraction should make it easy to implement arbitrary speaker configurations in the future.
https://github.com/mbillingr/ambisonic/blob/master/documents/info.md
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.