speechcore 0.1.1

Reusable Rust speech-to-text runtime with audio capture, VAD, backend selection, model provisioning, and transcript streaming.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod backend;
pub mod decoder;
pub mod lang;
pub mod mel;
pub mod model;

pub use backend::NemotronBackend;

/// Mel left-context frames prepended to every encoder chunk (pre-encode cache).
pub(crate) const PRE_ENCODE_CACHE: usize = 9;