pyannote-rs 0.3.4

Speaker diarization using pyannote in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod session;

mod embedding;
mod identify;
mod segment;
mod wav;

pub use embedding::EmbeddingExtractor;
pub use identify::EmbeddingManager;
pub use knf_rs::{compute_fbank, convert_integer_to_float_audio};
pub use segment::{get_segments, Segment};
pub use wav::read_wav;