murmur-core 0.1.3

Core transcription engine for murmur — audio capture, Whisper transcription, VAD, and context abstractions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod activate;
pub mod capture;
pub mod recordings;
pub mod speaker;
pub mod system_capture;

pub use activate::prepare_default_input;
pub use capture::{AudioRecorder, TARGET_RATE, WHISPER_WAV_SPEC};
pub use recordings::RecordingStore;
pub use speaker::{ActiveSpeaker, SpeakerTracker};
pub use system_capture::{list_audio_devices, AudioDevice, SystemAudioCapturer};