From ca0f9d91113eae22f83e75e771016cee2b53fba5 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Sat, 4 May 2024 12:42:33 -0400 Subject: [PATCH] substudy: Make images 50% larger Screen resolutions have gotten a lot higher in the last 8 years. Let's bump up image sizes. Closes #51. --- substudy/src/video.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substudy/src/video.rs b/substudy/src/video.rs index 09c3cee..c1d39c1 100644 --- a/substudy/src/video.rs +++ b/substudy/src/video.rs @@ -255,7 +255,7 @@ impl ExtractionSpec { match self { ExtractionSpec::Image { time } => { let scale_filter = - format!("scale=iw*min(1\\,min({}/iw\\,{}/ih)):-1", 240, 160); + format!("scale=iw*min(1\\,min({}/iw\\,{}/ih)):-1", 360, 240); cmd.arg("-ss") .arg(format!("{}", time - time_base)) .arg("-vframes")