From 15f993a036b7efe5ad0792546ccf5753b56d06eb Mon Sep 17 00:00:00 2001 From: Yousef Rafat <81116377+yousef-rafat@users.noreply.github.com> Date: Thu, 30 Apr 2026 14:58:18 +0300 Subject: [PATCH] remove 12-bit --- comfy_extras/nodes_images.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/comfy_extras/nodes_images.py b/comfy_extras/nodes_images.py index a9ef91459..c3aa807a4 100644 --- a/comfy_extras/nodes_images.py +++ b/comfy_extras/nodes_images.py @@ -1072,9 +1072,7 @@ class SaveImageAdvanced(IO.ComfyNode): stream.time_base = Fraction(1, 1) - if bit_depth == "12-bit": - stream.pix_fmt = 'yuv420p12le' - elif bit_depth in ["10-bit", "16-bit", "32-bit"]: + if bit_depth in ["10-bit", "16-bit", "32-bit"]: stream.pix_fmt = 'yuv420p10le' else: stream.pix_fmt = 'yuv420p'