transcode in reverse order

This commit is contained in:
Dominic 2023-11-14 10:30:17 +01:00
parent feb8596bfc
commit 371071ca47
Signed by: msrd0
GPG key ID: DCC8C247452E98F9

View file

@ -275,7 +275,7 @@ fn main() {
});
// rescale the video
for res in Resolution::values() {
for res in Resolution::values().into_iter().rev() {
if res >= project.source.metadata.as_ref().unwrap().source_res {
continue;
}