use crate::{
command::{
PROGRESS_CHARS,
args::{self, PixelFormat},
},
ffprobe,
log::ProgressLogger,
process::FfmpegOut,
vmaf::{self, VmafOut},
};
use anyhow::Context;
use clap::Parser;
use indicatif::{ProgressBar, ProgressStyle};
use std::{
path::PathBuf,
pin::pin,
time::{Duration, Instant},
};
use tokio_stream::StreamExt;
#[derive(Parser)]
#[clap(verbatim_doc_comment)]
#[group(skip)]
pub struct Args {
#[arg(long)]
pub reference: PathBuf,
#[arg(long)]
pub distorted: PathBuf,
#[clap(flatten)]
pub vmaf: args::Vmaf,
#[clap(flatten)]
pub score: args::ScoreArgs,
}
pub async fn vmaf(
Args {
reference,
distorted,
vmaf,
score,
}: Args,
) -> anyhow::Result<()> {
let bar = ProgressBar::new(1).with_style(
ProgressStyle::default_bar()
.template("{spinner:.cyan.bold} {elapsed_precise:.bold} {wide_bar:.cyan/blue} ({msg}eta {eta})")?
.progress_chars(PROGRESS_CHARS)
);
bar.enable_steady_tick(Duration::from_millis(100));
bar.set_message("vmaf running, ");
let dprobe = ffprobe::probe(&distorted);
let rprobe = ffprobe::probe(&reference);
let nframes = dprobe.nframes().or_else(|_| rprobe.nframes());
let duration = dprobe.duration.as_ref().or(rprobe.duration.as_ref());
if let Ok(nframes) = nframes {
bar.set_length(nframes);
}
let mut vmaf = pin!(vmaf::run(
&reference,
&distorted,
&vmaf.ffmpeg_lavfi(
dprobe.resolution,
PixelFormat::opt_max(dprobe.pixel_format(), rprobe.pixel_format()),
score.reference_vfilter.as_deref(),
),
vmaf.fps(),
)?);
let mut logger = ProgressLogger::new(module_path!(), Instant::now());
let mut vmaf_score = None;
while let Some(vmaf) = vmaf.next().await {
match vmaf {
VmafOut::Done(score) => {
vmaf_score = Some(score);
}
VmafOut::Progress(FfmpegOut::Progress {
frame, fps, time, ..
}) => {
if fps > 0.0 {
bar.set_message(format!("vmaf {fps} fps, "));
}
if nframes.is_ok() {
bar.set_position(frame);
}
if let Ok(total) = duration {
logger.update(*total, time, fps);
}
}
VmafOut::Progress(FfmpegOut::StreamSizes { .. }) => {}
VmafOut::Err(e) => return Err(e),
}
}
bar.finish();
println!("{}", vmaf_score.context("no vmaf score")?);
Ok(())
}