mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-04 04:39:10 +00:00
fixed Anime4KCPP upscaling bug
This commit is contained in:
parent
ab684bcd48
commit
a2fc71d6c5
@ -4,7 +4,7 @@
|
|||||||
Name: Video2X Upscaler
|
Name: Video2X Upscaler
|
||||||
Author: K4YT3X
|
Author: K4YT3X
|
||||||
Date Created: December 10, 2018
|
Date Created: December 10, 2018
|
||||||
Last Modified: May 4, 2020
|
Last Modified: May 5, 2020
|
||||||
|
|
||||||
Description: This file contains the Upscaler class. Each
|
Description: This file contains the Upscaler class. Each
|
||||||
instance of the Upscaler class is an upscaler on an image or
|
instance of the Upscaler class is an upscaler on an image or
|
||||||
@ -311,7 +311,12 @@ class Upscaler:
|
|||||||
# Anime4KCPP will then use FFmpeg to migrate audio tracks
|
# Anime4KCPP will then use FFmpeg to migrate audio tracks
|
||||||
os.environ['PATH'] += f';{self.ffmpeg_settings["ffmpeg_path"]}'
|
os.environ['PATH'] += f';{self.ffmpeg_settings["ffmpeg_path"]}'
|
||||||
Avalon.info(_('Starting to upscale extracted images'))
|
Avalon.info(_('Starting to upscale extracted images'))
|
||||||
driver = Anime4kCpp(self.driver_settings)
|
|
||||||
|
# import and initialize Anime4KCPP wrapper
|
||||||
|
DriverWrapperMain = getattr(importlib.import_module('wrappers.anime4kcpp'), 'WrapperMain')
|
||||||
|
driver = DriverWrapperMain(copy.deepcopy(self.driver_settings))
|
||||||
|
|
||||||
|
# run Anime4KCPP
|
||||||
driver.upscale(self.input_video, self.output_video, self.scale_ratio, self.processes).wait()
|
driver.upscale(self.input_video, self.output_video, self.scale_ratio, self.processes).wait()
|
||||||
Avalon.info(_('Upscaling completed'))
|
Avalon.info(_('Upscaling completed'))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user