10 lines
152 B
Rust
10 lines
152 B
Rust
//! Overlay module
|
|
//!
|
|
//! ASR subtitle and YOLO bbox overlay management
|
|
|
|
pub mod asr;
|
|
pub mod yolo;
|
|
|
|
pub use asr::AsrLoader;
|
|
pub use yolo::YoloLoader;
|