Skip to content

Commit 88ed5a1

Browse files
authored
Warn about slowness when using "select" chunk method (#560)
Partially addresses #559
1 parent be82f3b commit 88ed5a1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

av1an-core/src/settings.rs

+3
Original file line numberDiff line numberDiff line change
@@ -565,6 +565,9 @@ properly into a mkv file. Specify mkvmerge as the concatenation method by settin
565565
"FFMS2 is not installed, but it was specified as the chunk method"
566566
);
567567
}
568+
if self.chunk_method == ChunkMethod::Select {
569+
warn!("It is not recommended to use the \"select\" chunk method, as it is very slow");
570+
}
568571

569572
if let Some(vmaf_path) = &self.vmaf_path {
570573
ensure!(vmaf_path.exists());

0 commit comments

Comments
 (0)