12 lines
283 B
Rust
12 lines
283 B
Rust
//! Audio playback module for voice messages.
|
|
//!
|
|
//! Provides:
|
|
//! - AudioPlayer: ffplay-based playback with play/pause/seek controls
|
|
//! - VoiceCache: LRU cache for downloaded OGG voice files
|
|
|
|
pub mod cache;
|
|
pub mod player;
|
|
|
|
pub use cache::VoiceCache;
|
|
pub use player::AudioPlayer;
|