Prevent black images in VAE Decode (Tiled) node.

Overlap should be minimum 1 with tiling 2 for tiled temporal VAE decoding.
This commit is contained in:
comfyanonymous
2024-12-24 07:36:30 -05:00
parent 5388df784a
commit 73e04987f7
2 changed files with 5 additions and 2 deletions

View File

@@ -304,6 +304,8 @@ class VAEDecodeTiled:
def decode(self, vae, samples, tile_size, overlap=64, temporal_size=64, temporal_overlap=8):
if tile_size < overlap * 4:
overlap = tile_size // 4
if temporal_size < temporal_overlap * 2:
temporal_overlap = temporal_overlap // 2
temporal_compression = vae.temporal_compression_decode()
if temporal_compression is not None:
temporal_size = max(2, temporal_size // temporal_compression)