From 60ae71f3c559194af238233d5463192d528b88b9 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Thu, 25 May 2023 21:09:58 +0000 Subject: [PATCH] adjusted interpolation %diff from 10% to 5% --- video2x/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video2x/__main__.py b/video2x/__main__.py index 6e858ce..a9eb60e 100755 --- a/video2x/__main__.py +++ b/video2x/__main__.py @@ -143,7 +143,7 @@ def parse_arguments() -> argparse.Namespace: "skip if the percent difference between two adjacent frames exceeds this" " value; set to 100 to interpolate all frames" ), - default=10, + default=5, ) return parser.parse_args()