From b37b9983260243208ac94a8b9eec97617674e800 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Fri, 2 Jun 2023 16:40:08 +0200 Subject: [PATCH] Fix frames vs. cpu cores issue --- roop/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roop/core.py b/roop/core.py index 3d89761..7acf33b 100755 --- a/roop/core.py +++ b/roop/core.py @@ -102,7 +102,7 @@ def start_processing(): if args['gpu'] or n < 2: process_video(args['source_img'], args["frame_paths"]) return - # multi thread of frames to cpu cores ratio is 2 + # multi thread if video frames to cpu cores ratio is 2 if n > 2: processes = [] for i in range(0, len(frame_paths), n):