tplay 0.3.0

A terminal based media player that visualizes images and videos as ASCII art.
1
2
3
4
5
6
7
8
9
10
//! The `audio` module contains the necessary components for playing audio files.
//!
//! It consists of the following sub-modules:
//! - `player`: Defines an `AudioPlayer` struct and related functionality for playing audio files.
//! - `runner`: Implements the main functionality for running the audio playback, including frame
//!   rate control and output.
//! - `utils`: Contains utility functions for working with audio files.
pub mod player;
pub mod runner;
pub mod utils;