tplay 0.9.2

A media player that visualizes images and videos as ASCII art directly in the terminal (with sound).
1
2
3
4
5
6
7
8
9
//! This module contains error handling utilities for the application.
//!
//! It consists of the following sub-modules:
//! - `errors`: Defines an `ApplicationError` enum and related functionality for handling application errors.
//! - `utils`: Contains utility functions
//! - `sync`: Contains shared playback synchronization state
pub mod errors;
pub mod sync;
pub mod utils;