ffplayout/src/main.rs

21 lines
320 B
Rust
Raw Normal View History

extern crate log;
extern crate simplelog;
2022-02-20 22:08:17 +01:00
mod filter;
mod output;
2022-02-12 22:32:51 +01:00
mod utils;
use simplelog::*;
use crate::output::play;
use crate::utils::{get_config, init_logging};
2022-02-12 22:32:51 +01:00
fn main() {
let config = get_config();
let logging = init_logging(&config);
CombinedLogger::init(logging).unwrap();
2022-02-23 18:06:40 +01:00
play(config);
2022-02-12 22:32:51 +01:00
}