tweak values for larger videos

This commit is contained in:
Luna 2023-06-12 16:33:47 -03:00
parent 0f29ba76c2
commit ad268357bd
1 changed files with 4 additions and 2 deletions

View File

@ -263,8 +263,10 @@ async fn upload_file(
11..=60 => 10,
61..=120 => 15,
121..=300 => 20,
301.. => 30,
_ => 33,
301..=1000 => 30,
1001..=1200 => 40,
1201.. => 60,
_ => 63,
} as f64;
let wanted_frame_skip = wanted_frame_skip_seconds * frame_rate;