1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Kalosm Sound
//!
//! This crate is a collection of audio utilities for the Kalosm project.
//!
//! There are four main parts of this crate:
//! - The [`AudioStream`] struct for streaming audio data
//! - The [`AudioBuffer`] struct for storing audio data
//! - The [`MicInput`] struct for reading audio data from a microphone
//! - The [`Whisper`] transcription model for converting audio data into text

#![warn(missing_docs)]

mod audio;
pub use audio::*;
mod source;
pub use rodio;
pub use rwhisper::*;
pub use source::*;