proteus_audio 0.3.1

A command line utility and library for playing .prot audio files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # Proteus Audio Library
//!
//! This library provides the core audio playback and processing functionalities for the Proteus audio player.
//! It includes modules for audio playback, effects, metadata handling, and more.

mod buffer;
pub mod effects;
pub mod info;
pub mod peaks;
pub mod player;
mod player_engine;
pub mod prot;
pub mod reporter;
pub mod test_data;
pub mod timer;
mod tools;
mod track;