mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 23:19:11 +00:00
fixed incorrect interpolator choices; reduced libfdk_aac cutoff freq
This commit is contained in:
parent
c746773980
commit
5255e20283
@ -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],
|
||||||
)
|
)
|
||||||
|
@ -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",
|
||||||
|
Loading…
Reference in New Issue
Block a user