Default to --lookahead=6 now that it's fast

This commit is contained in:
kris 2021-01-15 22:25:32 +00:00
parent c5b8feb17e
commit f132f0b84b
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ def main():
parser.add_argument("input", type=str, help="Input file to process")
parser.add_argument("output", type=str, help="Output file for ")
parser.add_argument(
"--lookahead", type=int, default=4,
"--lookahead", type=int, default=6,
help=("How many pixels to look ahead to compensate for NTSC colour "
"artifacts."))
parser.add_argument('--dither', type=str,