fixed incorrect interpolator choices; reduced libfdk_aac cutoff freq

This commit is contained in:
k4yt3x 2023-05-25 18:43:53 +00:00
parent c746773980
commit 5255e20283
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ def parse_arguments() -> argparse.Namespace:
interpolate.add_argument( interpolate.add_argument(
"-a", "-a",
"--algorithm", "--algorithm",
choices=UPSCALING_ALGORITHMS, choices=INTERPOLATION_ALGORITHMS,
help="algorithm to use for upscaling", help="algorithm to use for upscaling",
default=INTERPOLATION_ALGORITHMS[0], default=INTERPOLATION_ALGORITHMS[0],
) )

View File

@ -92,7 +92,7 @@ class VideoEncoder:
crf=17, crf=17,
preset="veryslow", preset="veryslow",
# acodec="libfdk_aac", # acodec="libfdk_aac",
# cutoff=20000, # cutoff=18000,
r=frame_rate, r=frame_rate,
map_metadata=1, map_metadata=1,
metadata="comment=Processed with Video2X", metadata="comment=Processed with Video2X",