ffplayout/src/main.rs

95 lines
2.3 KiB
Rust
Raw Normal View History

2022-04-10 22:05:19 +02:00
extern crate log;
extern crate simplelog;
2022-04-07 15:01:09 +02:00
use std::{
2022-04-26 13:47:52 +02:00
{fs, fs::File},
2022-04-07 15:01:09 +02:00
path::PathBuf,
2022-04-13 17:40:47 +02:00
process::exit,
2022-04-26 13:47:52 +02:00
thread,
2022-04-07 15:01:09 +02:00
};
use serde::{Deserialize, Serialize};
use serde_json::json;
2022-04-05 17:07:34 +02:00
use simplelog::*;
2022-02-20 22:08:17 +01:00
mod filter;
mod input;
mod output;
mod rpc;
2022-02-12 22:32:51 +01:00
mod utils;
2022-03-31 17:36:10 +02:00
use crate::output::{player, write_hls};
use crate::utils::{
2022-04-13 17:40:47 +02:00
generate_playlist, init_config, init_logging, validate_ffmpeg, GlobalConfig, PlayerControl,
PlayoutStatus, ProcessControl,
};
use rpc::json_rpc_server;
2022-02-12 22:32:51 +01:00
2022-04-07 15:01:09 +02:00
#[derive(Serialize, Deserialize)]
struct StatusData {
time_shift: f64,
date: String,
}
2022-02-12 22:32:51 +01:00
fn main() {
2022-03-13 22:18:53 +01:00
init_config();
2022-03-31 17:36:10 +02:00
let config = GlobalConfig::global();
let play_control = PlayerControl::new();
2022-04-07 15:01:09 +02:00
let playout_stat = PlayoutStatus::new();
2022-04-05 17:07:34 +02:00
let proc_control = ProcessControl::new();
2022-04-07 15:01:09 +02:00
if !PathBuf::from(config.general.stat_file.clone()).exists() {
let data = json!({
"time_shift": 0.0,
"date": String::new(),
2022-04-07 15:01:09 +02:00
});
let json: String = serde_json::to_string(&data).expect("Serialize status data failed");
fs::write(config.general.stat_file.clone(), &json).expect("Unable to write file");
} else {
let stat_file = File::options()
.read(true)
.write(false)
.open(&config.general.stat_file)
.expect("Could not open status file");
let data: StatusData =
serde_json::from_reader(stat_file).expect("Could not read status file.");
*playout_stat.time_shift.lock().unwrap() = data.time_shift;
*playout_stat.date.lock().unwrap() = data.date;
}
2022-04-26 13:47:52 +02:00
let logging = init_logging();
CombinedLogger::init(logging).unwrap();
2022-02-23 18:06:40 +01:00
2022-03-24 17:21:38 +01:00
validate_ffmpeg();
2022-04-14 11:50:29 +02:00
if let Some(range) = config.general.generate.clone() {
generate_playlist(range);
2022-04-13 17:40:47 +02:00
exit(0);
}
2022-04-26 13:47:52 +02:00
let play_ctl = play_control.clone();
let play_stat = playout_stat.clone();
let proc_ctl = proc_control.clone();
2022-04-05 17:07:34 +02:00
if config.rpc_server.enable {
2022-04-26 13:47:52 +02:00
thread::spawn( move || json_rpc_server(
play_ctl,
play_stat,
proc_ctl,
2022-04-07 15:01:09 +02:00
));
2022-04-05 17:07:34 +02:00
}
if &config.out.mode.to_lowercase() == "hls" {
2022-04-26 13:47:52 +02:00
write_hls(play_control, playout_stat, proc_control);
2022-03-31 17:36:10 +02:00
} else {
2022-04-26 13:47:52 +02:00
player(play_control, playout_stat, proc_control);
2022-03-31 17:36:10 +02:00
}
2022-04-05 17:07:34 +02:00
info!("Playout done...");
2022-02-12 22:32:51 +01:00
}