Crates.io | kaldi-fbank-rust-kautism |
lib.rs | kaldi-fbank-rust-kautism |
version | |
source | src |
created_at | 2025-03-17 12:47:12.186386+00 |
updated_at | 2025-03-17 12:47:12.186386+00 |
description | Kautism's fork of https://github.com/Okabintaro/kaldi-fbank-rust |
homepage | https://github.com/darkautism/kaldi-fbank-rust |
repository | |
max_upload_size | |
id | 1595431 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Minimal bindings for kaldi-native-fbank.
Still WIP. Only bound the things I needed.
Example:
let mut fbank = OnlineFbank::new(16_000f32);
fbank.accept_waveform(16_000f32, &[0.0; 16000 * 10]);
fbank.input_finished();
let frame = fbank.get_frame(0);
// Use frame/features
Generate bindings using bindgen like this:
bindgen kaldi-native-fbank/kaldi-native-fbank/c-api/c-api.h -o src/lib_sys.rs
Compile using cmake with compile commands for clangd.
cmake -S kaldi-native-fbank/ -B build -D BUILD_SHARED_LIBS=0 -D KALDI_NATIVE_FBANK_BUILD_PYTHON=0 -D KALDI_NATIVE_FBANK_BUILD_TESTS=0 -D CMAKE_EXPORT_COMPILE_COMMANDS=1
cmake --build build
ln -s build/compile_commands.json .
MIT or Apache 2