Skip to content

Commit

Permalink
substudy: Make images 50% larger
Browse files Browse the repository at this point in the history
Screen resolutions have gotten a lot higher in the last 8 years. Let's bump up image sizes.

Closes #51.
  • Loading branch information
emk committed May 4, 2024
1 parent 0c3cc90 commit ca0f9d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substudy/src/video.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit ca0f9d9

Please sign in to comment.