Julius bindings and other goodies for Rust.
Simply add the following to your Cargo.toml
file
rust
[dependencies.julius]
julius = "*"
````rust extern crate julius;
let path = Path::new("/path/to/your/jconf/file.jconf");
// load configurations from a jconf file let mut julius = julius::Julius::load(&path).unwrap();
julius.on_recognition(|sentence| { println!("{}", sentence); });
julius.open_stream().unwrap(); ````
TODO...
Julius is a high-performance, two-pass large vocabulary continuous speech recognition (LVCSR) decoder software for speech-related researchers and developers.
Don't forget to checkout the JuliusBook.
./configure
make
make install
libsent.a
and libjulius.a
are in your lib dir (/usr/local/lib
).