flip width/height inputs to the sampler node (finally)

This commit is contained in:
kijai 2024-11-14 19:57:38 +02:00
parent 0bd3da569e
commit 832dad94bc

View File

@ -760,8 +760,8 @@ class CogVideoSampler:
"pipeline": ("COGVIDEOPIPE",),
"positive": ("CONDITIONING", ),
"negative": ("CONDITIONING", ),
"height": ("INT", {"default": 480, "min": 128, "max": 2048, "step": 16}),
"width": ("INT", {"default": 720, "min": 128, "max": 2048, "step": 16}),
"height": ("INT", {"default": 480, "min": 128, "max": 2048, "step": 16}),
"num_frames": ("INT", {"default": 49, "min": 17, "max": 1024, "step": 4}),
"steps": ("INT", {"default": 50, "min": 1}),
"cfg": ("FLOAT", {"default": 6.0, "min": 0.0, "max": 30.0, "step": 0.01}),