1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]

mod error;
mod iterator;
mod label;
mod predict;
mod sample;
#[cfg(feature = "async")]
mod stream;
mod vad;

pub use error::Error;
pub use iterator::{IteratorExt, LabelIterator, PredictIterator};
pub use label::LabeledAudio;
pub use sample::Sample;
#[cfg(feature = "async")]
pub use stream::{LabelStream, PredictStream, StreamExt};
pub use vad::{VoiceActivityDetector, VoiceActivityDetectorBuilder};