From e97599635d0e8e456ce2b749b618670f0a270178 Mon Sep 17 00:00:00 2001 From: DeepBeepMeep Date: Fri, 18 Apr 2025 03:28:28 +0200 Subject: [PATCH] fix for rgb alpha bug ? --- wgp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgp.py b/wgp.py index 6aa9736..141cee0 100644 --- a/wgp.py +++ b/wgp.py @@ -2150,7 +2150,7 @@ def convert_image(image): from PIL import ImageOps from typing import cast - + image = image.convert('RGB') return cast(Image, ImageOps.exif_transpose(image)) def get_resampled_video(video_in, start_frame, max_frames):