captionrs 0.1.0

Advanced subtitle converter and processor
Documentation
1
2
3
4
5
6
7
8
9
10
use std::process;

use captionrs::run_cli as run;

fn main() {
    if let Err(err) = run() {
        eprintln!("Error: {}", err);
        process::exit(1);
    }
}