Crates.io | soloud-sys |
lib.rs | soloud-sys |
version | 1.0.5 |
source | src |
created_at | 2020-08-26 16:20:37.953064 |
updated_at | 2023-08-07 21:36:02.034067 |
description | Rust bindings for the soloud audio engine |
homepage | |
repository | https://github.com/MoAlyousef/soloud-rs |
max_upload_size | |
id | 281016 |
size | 16,664,670 |
Raw bindings to soloud. These are generated using bindgen on the soloud C headers.
[dependencies]
soloud-sys = { version = "1", features = ["miniaudio"] }
Example code:
use soloud_sys::soloud::*;
fn main() {
unsafe {
let sl = Soloud_create();
Soloud_init(sl);
std::thread::sleep(std::time::Duration::from_millis(100));
Soloud_setGlobalVolume(sl, 3.0);
let speech = Speech_create();
let ret = Speech_setText(speech, "Hello World\0".as_ptr() as _);
dbg!(ret);
Soloud_play(sl, speech);
while Soloud_getVoiceCount(sl) > 0 {
// calls to play are non-blocking, so we put the thread to sleep
std::thread::sleep(std::time::Duration::from_millis(100));
}
}
}