Skip to content

Commit 689f900

Browse files
committed
Update main.rs
1 parent f259c44 commit 689f900

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

av1an/src/main.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,12 @@ pub struct CliOpts {
510510
#[clap(long, default_value_t = 4, help_heading = "Target Quality")]
511511
pub probes: u32,
512512

513-
/// Framerate for probes, 1 - original
514-
#[clap(long, default_value_t = 1, help_heading = "Target Quality")]
513+
/// Only use every nth frame for VMAF calculation, while probing.
514+
///
515+
/// WARNING: The resulting VMAF score might differ from if all the frames were used; usually it should be lower,
516+
/// which means to get the same quality you must also usually lower the --target-quality. Going higher than
517+
/// n=4 usually results in unusable scores, so this is disabled.
518+
#[clap(long, default_value_t = 1, value_parser = clap::value_parser!(u16).range(1..=4), help_heading = "Target Quality")]
515519
pub probing_rate: u32,
516520

517521
/// Use encoding settings for probes specified by --video-params rather than faster, less accurate settings

0 commit comments

Comments
 (0)