Director 2CS v0.21
"WhatDreamsCost" Director node modded for Ref sheets
This commit is contained in:
@@ -1,106 +1,637 @@
|
||||
from comfy_extras.nodes_lt import LTXVAddGuide
|
||||
import logging
|
||||
import math
|
||||
import os
|
||||
import av
|
||||
import numpy as np
|
||||
import torch
|
||||
import comfy
|
||||
import comfy.sd
|
||||
import comfy.utils
|
||||
import folder_paths
|
||||
import node_helpers
|
||||
from comfy_extras import nodes_lt
|
||||
from comfy_api.latest import io
|
||||
from .ltx_director import GuideData
|
||||
from .ltx_director import GuideData, MotionGuideData, _resize_image, _execute_comfy_node, _unpack
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
class LTXDirectorGuide(LTXVAddGuide):
|
||||
@classmethod
|
||||
def define_schema(cls):
|
||||
return io.Schema(
|
||||
node_id="LTXDirectorGuideCS",
|
||||
display_name="LTX Director Guide CS",
|
||||
category="WhatDreamsCost CS",
|
||||
description=(
|
||||
"Applies guide images from a Prompt Relay Timeline node at the frame positions "
|
||||
"and strengths defined on the timeline. Connect guide_data from the timeline node."
|
||||
),
|
||||
inputs=[
|
||||
io.Conditioning.Input("positive", tooltip="Positive conditioning to add guide keyframe info to."),
|
||||
io.Conditioning.Input("negative", tooltip="Negative conditioning to add guide keyframe info to."),
|
||||
io.Vae.Input("vae", tooltip="Video VAE used to encode the guide images."),
|
||||
io.Latent.Input("latent", tooltip="Video latent — guides are inserted into this latent."),
|
||||
GuideData.Input("guide_data", tooltip="Guide data produced by Prompt Relay Encode (Timeline)."),
|
||||
io.Float.Input("scale_by", default=1.0, min=0.01, max=8.0, step=0.01, tooltip="Scale the latent by this factor."),
|
||||
io.Combo.Input("upscale_method", options=["nearest-exact", "bilinear", "area", "bicubic", "bislerp"], default="bicubic", tooltip="Method used to upscale/downscale the latent."),
|
||||
io.Float.Input("msr_strength", default=0.0, min=0.0, max=1.0, step=0.05, tooltip="Licon MSR only: per-stage reference strength override. 0 = use the Director's value (full pull, right for stage 1). On a refinement/upscale stage set ~0.4 to hold detail without the references repainting the opening (fixes stage-2 mist/ghosting)."),
|
||||
],
|
||||
outputs=[
|
||||
io.Conditioning.Output(display_name="positive"),
|
||||
io.Conditioning.Output(display_name="negative"),
|
||||
io.Latent.Output(display_name="latent", tooltip="Video latent with guide frames applied."),
|
||||
],
|
||||
# --- Helper Functions from Nghtdrp ---
|
||||
|
||||
def _get_guide_attention_entries(conditioning):
|
||||
for item in conditioning:
|
||||
entries = item[1].get("guide_attention_entries", None)
|
||||
if entries is not None:
|
||||
return entries
|
||||
return []
|
||||
|
||||
def _set_guide_attention_entries(conditioning, entries):
|
||||
return node_helpers.conditioning_set_values(
|
||||
conditioning, {"guide_attention_entries": entries}
|
||||
)
|
||||
|
||||
def _append_guide_attention_entry(
|
||||
conditioning,
|
||||
pre_filter_count,
|
||||
latent_shape,
|
||||
attention_strength=1.0,
|
||||
attention_mask=None,
|
||||
):
|
||||
entries = [*_get_guide_attention_entries(conditioning)]
|
||||
entries.append(
|
||||
{
|
||||
"pre_filter_count": int(pre_filter_count),
|
||||
"strength": float(attention_strength),
|
||||
"pixel_mask": attention_mask,
|
||||
"latent_shape": list(latent_shape),
|
||||
}
|
||||
)
|
||||
return _set_guide_attention_entries(conditioning, entries)
|
||||
|
||||
def _clone_noise_mask(latent, latent_image):
|
||||
if "noise_mask" in latent and latent["noise_mask"] is not None:
|
||||
return latent["noise_mask"].clone()
|
||||
batch, _, frames, _, _ = latent_image.shape
|
||||
return torch.ones(
|
||||
(batch, 1, frames, 1, 1),
|
||||
dtype=torch.float32,
|
||||
device=latent_image.device,
|
||||
)
|
||||
|
||||
def _resize_latent_spatial(latent_image, noise_mask, width, height, method):
|
||||
b, c, f, h, w = latent_image.shape
|
||||
if width == w and height == h:
|
||||
return latent_image, noise_mask
|
||||
|
||||
latent_4d = latent_image.permute(0, 2, 1, 3, 4).reshape(b * f, c, h, w)
|
||||
latent_4d = comfy.utils.common_upscale(latent_4d, width, height, method, "disabled")
|
||||
latent_image = latent_4d.reshape(b, f, c, height, width).permute(0, 2, 1, 3, 4)
|
||||
|
||||
if noise_mask is not None and (noise_mask.shape[-1] > 1 or noise_mask.shape[-2] > 1):
|
||||
mb, mc, mf, mh, mw = noise_mask.shape
|
||||
mask_4d = noise_mask.permute(0, 2, 1, 3, 4).reshape(mb * mf, mc, mh, mw)
|
||||
mask_4d = comfy.utils.common_upscale(mask_4d, width, height, method, "disabled")
|
||||
noise_mask = mask_4d.reshape(mb, mf, mc, height, width).permute(0, 2, 1, 3, 4)
|
||||
|
||||
return latent_image, noise_mask
|
||||
|
||||
def _ceil_to_multiple(value, multiple):
|
||||
multiple = max(1, int(multiple))
|
||||
return int(math.ceil(value / multiple) * multiple)
|
||||
|
||||
def _snap_latent_to_downscale(latent_image, noise_mask, downscale_factor, method):
|
||||
factor = int(max(1, round(float(downscale_factor))))
|
||||
if factor <= 1:
|
||||
return latent_image, noise_mask
|
||||
|
||||
_, _, _, h, w = latent_image.shape
|
||||
new_w = _ceil_to_multiple(w, factor)
|
||||
new_h = _ceil_to_multiple(h, factor)
|
||||
if new_w == w and new_h == h:
|
||||
return latent_image, noise_mask
|
||||
|
||||
log.warning(
|
||||
"[LTXDirectorGuide] Auto-snapping latent grid from %sx%s to %sx%s for IC-LoRA downscale factor %s.",
|
||||
w, h, new_w, new_h, factor,
|
||||
)
|
||||
return _resize_latent_spatial(latent_image, noise_mask, new_w, new_h, method)
|
||||
|
||||
def _load_lora_model_only(model, ic_lora_name, strength_model):
|
||||
lora_path = folder_paths.get_full_path_or_raise("loras", ic_lora_name)
|
||||
lora, metadata = comfy.utils.load_torch_file(
|
||||
lora_path, safe_load=True, return_metadata=True,
|
||||
)
|
||||
|
||||
try:
|
||||
latent_downscale_factor = float(metadata["reference_downscale_factor"])
|
||||
except Exception:
|
||||
latent_downscale_factor = 1.0
|
||||
log.warning(
|
||||
"[LTXDirectorGuide] Could not read reference_downscale_factor from %s, using 1.0.",
|
||||
ic_lora_name,
|
||||
)
|
||||
|
||||
@classmethod
|
||||
def execute(cls, positive, negative, vae, latent, guide_data, scale_by=1.0, upscale_method="bicubic", msr_strength=0.0) -> io.NodeOutput:
|
||||
scale_factors = vae.downscale_index_formula
|
||||
if strength_model == 0:
|
||||
return model, latent_downscale_factor
|
||||
|
||||
# Clone latents to avoid mutating upstream nodes
|
||||
latent_image = latent["samples"].clone()
|
||||
model_lora, _ = comfy.sd.load_lora_for_models(
|
||||
model, None, lora, strength_model, 0,
|
||||
)
|
||||
return model_lora, latent_downscale_factor
|
||||
|
||||
if "noise_mask" in latent:
|
||||
noise_mask = latent["noise_mask"].clone()
|
||||
def _encode_video_iclora_guide(vae, latent_width, latent_height, images, scale_factors, latent_downscale_factor, crop, use_tiled_encode, tile_size, tile_overlap, resize_method="crop"):
|
||||
time_scale_factor, width_scale_factor, height_scale_factor = scale_factors
|
||||
|
||||
num_frames_to_keep = ((images.shape[0] - 1) // time_scale_factor) * time_scale_factor + 1
|
||||
images = images[:num_frames_to_keep]
|
||||
|
||||
target_width = int(latent_width * width_scale_factor / latent_downscale_factor)
|
||||
target_height = int(latent_height * height_scale_factor / latent_downscale_factor)
|
||||
target_width = max(8, target_width)
|
||||
target_height = max(8, target_height)
|
||||
|
||||
# For guides, we must match the exact target latent shape.
|
||||
# "maintain aspect ratio" doesn't pad, which causes shape mismatch in VAE encode / concatenation.
|
||||
# So we fallback "maintain aspect ratio" to "pad".
|
||||
if resize_method == "maintain aspect ratio":
|
||||
resize_method = "pad"
|
||||
|
||||
pixels = _resize_image(images, target_width, target_height, resize_method, divisible_by=1)
|
||||
|
||||
encode_pixels = pixels[:, :, :, :3]
|
||||
if use_tiled_encode:
|
||||
guide_latent = vae.encode_tiled(encode_pixels, tile_x=tile_size, tile_y=tile_size, overlap=tile_overlap)
|
||||
else:
|
||||
guide_latent = vae.encode(encode_pixels)
|
||||
|
||||
return pixels, guide_latent
|
||||
|
||||
def _dilate_latent(latent: dict, horizontal_scale: int, vertical_scale: int) -> dict:
|
||||
if horizontal_scale == 1 and vertical_scale == 1:
|
||||
return latent
|
||||
|
||||
samples = latent["samples"]
|
||||
mask = latent.get("noise_mask", None)
|
||||
|
||||
dilated_shape = samples.shape[:3] + (
|
||||
samples.shape[3] * vertical_scale,
|
||||
samples.shape[4] * horizontal_scale,
|
||||
)
|
||||
dilated_samples = torch.zeros(dilated_shape, device=samples.device, dtype=samples.dtype, requires_grad=False)
|
||||
dilated_samples[..., ::vertical_scale, ::horizontal_scale] = samples
|
||||
|
||||
dilated_mask_shape = (
|
||||
dilated_samples.shape[0], 1, dilated_samples.shape[2],
|
||||
dilated_samples.shape[3], dilated_samples.shape[4],
|
||||
)
|
||||
dilated_mask = torch.full(dilated_mask_shape, -1.0, device=samples.device, dtype=samples.dtype, requires_grad=False)
|
||||
dilated_mask[..., ::vertical_scale, ::horizontal_scale] = (mask if mask is not None else 1.0)
|
||||
|
||||
return {"samples": dilated_samples, "noise_mask": dilated_mask}
|
||||
|
||||
def _resolve_input_video_path(video_file):
|
||||
if os.path.isabs(str(video_file)) and os.path.exists(str(video_file)):
|
||||
return str(video_file)
|
||||
input_dir = folder_paths.get_input_directory()
|
||||
candidate = os.path.join(input_dir, str(video_file))
|
||||
if os.path.exists(candidate):
|
||||
return candidate
|
||||
try:
|
||||
annotated = folder_paths.get_annotated_filepath(str(video_file))
|
||||
if annotated and os.path.exists(annotated):
|
||||
return annotated
|
||||
except Exception:
|
||||
pass
|
||||
raise FileNotFoundError(f"Could not find motion guide video: {video_file}")
|
||||
|
||||
class ResampleGuideFrames:
|
||||
def execute(self, images, source_fps, target_fps, target_num_frames, mode):
|
||||
if images is None: return images
|
||||
frames = images
|
||||
n = int(frames.shape[0])
|
||||
target_num_frames = int(target_num_frames)
|
||||
if n <= 1:
|
||||
if target_num_frames > 1 and n == 1:
|
||||
return frames.repeat(target_num_frames, 1, 1, 1)
|
||||
return frames
|
||||
source_fps = float(max(0.001, source_fps))
|
||||
target_fps = float(max(0.001, target_fps))
|
||||
if target_num_frames <= 0:
|
||||
duration = (n - 1) / source_fps
|
||||
target_num_frames = max(1, int(round(duration * target_fps)) + 1)
|
||||
if target_num_frames == n and abs(target_fps - source_fps) < 1e-6:
|
||||
return frames
|
||||
positions = torch.linspace(0, n - 1, target_num_frames, device=frames.device, dtype=torch.float32)
|
||||
if mode == "nearest":
|
||||
idx = torch.round(positions).long().clamp(0, n - 1)
|
||||
return frames.index_select(0, idx)
|
||||
idx0 = torch.floor(positions).long().clamp(0, n - 1)
|
||||
idx1 = torch.ceil(positions).long().clamp(0, n - 1)
|
||||
alpha = (positions - idx0.to(positions.dtype)).view(-1, 1, 1, 1)
|
||||
f0 = frames.index_select(0, idx0).to(torch.float32)
|
||||
f1 = frames.index_select(0, idx1).to(torch.float32)
|
||||
return (f0 * (1.0 - alpha) + f1 * alpha).to(frames.dtype)
|
||||
|
||||
def _load_motion_video_frames(video_file, trim_start_frames, length_frames, director_fps, resample_mode="nearest"):
|
||||
path = _resolve_input_video_path(video_file)
|
||||
target_fps = max(1.0, float(director_fps))
|
||||
start_s = max(0.0, float(trim_start_frames) / target_fps)
|
||||
dur_s = max(0.0, float(length_frames) / target_fps)
|
||||
end_s = start_s + dur_s if dur_s > 0 else None
|
||||
|
||||
log.info(f"[LTXDirectorGuide] Loading video frames from {path}. start_s: {start_s:.3f}, dur_s: {dur_s:.3f}, end_s: {end_s}")
|
||||
|
||||
container = av.open(path)
|
||||
stream = container.streams.video[0]
|
||||
stream.thread_type = "AUTO" # Enable multi-threaded decoding
|
||||
|
||||
try:
|
||||
source_fps = float(stream.average_rate) if stream.average_rate else float(stream.base_rate)
|
||||
except Exception:
|
||||
source_fps = target_fps
|
||||
if source_fps <= 0: source_fps = target_fps
|
||||
|
||||
# Seek to keyframe slightly before target start_s to optimize loading speed and memory
|
||||
if start_s > 0:
|
||||
try:
|
||||
if stream.time_base:
|
||||
seek_pts = int(max(0, start_s - 0.5) / float(stream.time_base))
|
||||
else:
|
||||
seek_pts = int(max(0, start_s - 0.5) * av.time_base)
|
||||
container.seek(seek_pts, stream=stream, backward=True)
|
||||
log.info(f"[LTXDirectorGuide] PyAV seeked stream to pts={seek_pts} (approx {max(0, start_s - 0.5):.3f}s)")
|
||||
except Exception as seek_err:
|
||||
log.warning(f"[LTXDirectorGuide] Seek failed: {seek_err}, decoding from beginning.")
|
||||
|
||||
frames = []
|
||||
decoded_count = 0
|
||||
for frame in container.decode(stream):
|
||||
if frame.time is not None:
|
||||
t = float(frame.time)
|
||||
elif frame.pts is not None and stream.time_base is not None:
|
||||
t = float(frame.pts * stream.time_base)
|
||||
else:
|
||||
batch, _, latent_frames, latent_height, latent_width = latent_image.shape
|
||||
noise_mask = torch.ones(
|
||||
(batch, 1, latent_frames, 1, 1),
|
||||
dtype=torch.float32,
|
||||
device=latent_image.device,
|
||||
)
|
||||
t = float(decoded_count / source_fps)
|
||||
decoded_count += 1
|
||||
|
||||
if t < start_s - 0.01: continue
|
||||
if end_s is not None and t >= end_s: break
|
||||
|
||||
# Append raw uint8 numpy arrays to minimize CPU allocation overhead
|
||||
frames.append(frame.to_ndarray(format="rgb24"))
|
||||
container.close()
|
||||
|
||||
if not frames: raise ValueError(f"No frames decoded for motion guide segment: {video_file}")
|
||||
|
||||
# Convert all frames to float32 at once to optimize memory allocation
|
||||
frames_np = np.array(frames, dtype=np.float32) / 255.0
|
||||
images = torch.from_numpy(frames_np)
|
||||
|
||||
target_count = max(1, int(round(float(length_frames))))
|
||||
images = ResampleGuideFrames().execute(images, source_fps, target_fps, target_count, resample_mode)
|
||||
return images
|
||||
|
||||
# --- Main Class ---
|
||||
|
||||
class LTXDirectorGuide:
|
||||
@classmethod
|
||||
def INPUT_TYPES(cls):
|
||||
loras = folder_paths.get_filename_list("loras")
|
||||
if not loras: loras = ["put_ic_lora_in_ComfyUI_models_loras"]
|
||||
return {
|
||||
"required": {
|
||||
"positive": ("CONDITIONING", {"tooltip": "Positive conditioning to add guide keyframe info to."}),
|
||||
"negative": ("CONDITIONING", {"tooltip": "Negative conditioning to add guide keyframe info to."}),
|
||||
"vae": ("VAE", {"tooltip": "Video VAE used to encode the guide images."}),
|
||||
"latent": ("LATENT", {"tooltip": "Video latent — guides are inserted into this latent."}),
|
||||
"guide_data": ("GUIDE_DATA", {"tooltip": "Guide data produced by Prompt Relay Encode (Timeline)."}),
|
||||
},
|
||||
"optional": {
|
||||
"motion_guide_data": ("MOTION_GUIDE_DATA", {"tooltip": "Connect motion guide data from the timeline node to use IC-LoRA video guidance."}),
|
||||
"model": ("MODEL", {"tooltip": "Connect model if using IC-LoRA for motion guidance."}),
|
||||
"ic_lora_name": (["None"] + loras, {"default": "None", "tooltip": "Select the IC-LoRA model to use for motion guidance."}),
|
||||
"ic_lora_strength": ("FLOAT", {"default": 1.0, "min": -100.0, "max": 100.0, "step": 0.01}),
|
||||
"scale_by": ("FLOAT", {"default": 0.5, "min": 0.01, "max": 8.0, "step": 0.01, "tooltip": "Scale the latent by this factor. 0.5 is recommended for IC-LoRA."}),
|
||||
"upscale_method": (["nearest-exact", "bilinear", "area", "bicubic", "bislerp"], {"default": "bicubic", "tooltip": "Method used to upscale/downscale the latent."}),
|
||||
"image_attention_strength": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.01}),
|
||||
"crop": (["disabled", "center"], {"default": "center"}),
|
||||
"auto_snap_ic_grid": ("BOOLEAN", {"default": True}),
|
||||
"use_tiled_encode": ("BOOLEAN", {"default": False}),
|
||||
"tile_size": ("INT", {"default": 256, "min": 64, "max": 512, "step": 32}),
|
||||
"tile_overlap": ("INT", {"default": 64, "min": 16, "max": 256, "step": 16}),
|
||||
"retake_mode": ("BOOLEAN", {"default": False, "tooltip": "Force Retake Mode. If false, it will still auto-detect Retake Mode from the timeline data."}),
|
||||
"msr_strength": ("FLOAT", {"default": 0.0, "min": 0.0, "max": 1.0, "step": 0.05, "tooltip": "Licon MSR only: per-stage reference strength override. 0 = use the Director's value (full pull, right for stage 1). On a refinement/upscale stage set ~0.4 to hold detail without the references repainting the opening (fixes stage-2 mist/ghosting)."}),
|
||||
}
|
||||
}
|
||||
|
||||
RETURN_TYPES = ("CONDITIONING", "CONDITIONING", "LATENT", "MODEL", "FLOAT")
|
||||
RETURN_NAMES = ("positive", "negative", "latent", "model", "latent_downscale_factor")
|
||||
FUNCTION = "execute"
|
||||
|
||||
@classmethod
|
||||
def execute(cls, positive, negative, vae, latent, guide_data, motion_guide_data=None, model=None, ic_lora_name="None", ic_lora_strength=1.0, scale_by=1.0, upscale_method="bicubic", image_attention_strength=1.0, crop="center", auto_snap_ic_grid=True, use_tiled_encode=False, tile_size=256, tile_overlap=64, retake_mode=False, msr_strength=0.0):
|
||||
motion_segments = (motion_guide_data or {}).get("segments", []) if motion_guide_data else []
|
||||
image_guides_count = len(guide_data.get("images", [])) if guide_data else 0
|
||||
print(f"[LTXDirectorGuide] execute started. motion_segments: {len(motion_segments)}, image_guides: {image_guides_count}, ic_lora_name: {ic_lora_name}, model connected: {model is not None}, retake_mode: {retake_mode}")
|
||||
|
||||
active_resize_method = guide_data.get("resize_method") if guide_data else None
|
||||
if not active_resize_method:
|
||||
active_resize_method = motion_guide_data.get("resize_method") if motion_guide_data else None
|
||||
if not active_resize_method:
|
||||
active_resize_method = "crop" if crop == "center" else "stretch to fit"
|
||||
|
||||
latent_downscale_factor = 1.0
|
||||
if model is not None and ic_lora_name != "None":
|
||||
model, latent_downscale_factor = _load_lora_model_only(model, ic_lora_name, ic_lora_strength)
|
||||
|
||||
scale_factors = vae.downscale_index_formula
|
||||
latent_image = latent["samples"].clone()
|
||||
noise_mask = _clone_noise_mask(latent, latent_image)
|
||||
|
||||
# Apply scale factor if not 1.0
|
||||
if scale_by != 1.0:
|
||||
B, C, F, H, W = latent_image.shape
|
||||
width = round(W * scale_by)
|
||||
height = round(H * scale_by)
|
||||
|
||||
# Reshape to 4D for common_upscale
|
||||
latent_4d = latent_image.permute(0, 2, 1, 3, 4).reshape(B * F, C, H, W)
|
||||
latent_resized_4d = comfy.utils.common_upscale(latent_4d, width, height, upscale_method, "disabled")
|
||||
latent_image = latent_resized_4d.reshape(B, F, C, height, width).permute(0, 2, 1, 3, 4)
|
||||
_, _, _, h, w = latent_image.shape
|
||||
target_w = max(1, round(w * scale_by))
|
||||
target_h = max(1, round(h * scale_by))
|
||||
latent_image, noise_mask = _resize_latent_spatial(latent_image, noise_mask, target_w, target_h, upscale_method)
|
||||
|
||||
# Also resize noise mask if it's not a broadcasted mask
|
||||
if noise_mask.shape[-1] > 1 or noise_mask.shape[-2] > 1:
|
||||
mask_4d = noise_mask.permute(0, 2, 1, 3, 4).reshape(B * F, 1, H, W)
|
||||
mask_resized_4d = comfy.utils.common_upscale(mask_4d, width, height, upscale_method, "disabled")
|
||||
noise_mask = mask_resized_4d.reshape(B, F, 1, height, width).permute(0, 2, 1, 3, 4)
|
||||
if auto_snap_ic_grid and model is not None and ic_lora_name != "None":
|
||||
latent_image, noise_mask = _snap_latent_to_downscale(latent_image, noise_mask, latent_downscale_factor, upscale_method)
|
||||
|
||||
# Ghost Mask: the Director kept the latent clean (so it stays length-matched with the audio
|
||||
# latent) and asked us to pre-extend it here by one hidden frame per reference. The tail
|
||||
# sits past the clean region; the reference images (in guide_data["images"], anchored at
|
||||
# (clean + i)) are written into it by the loop below, then dropped downstream by Clean
|
||||
# Latent Slice (length = clean_latent_frames).
|
||||
_ghost_pre_extend = int(guide_data.get("ghost_pre_extend", 0)) if guide_data else 0
|
||||
if _ghost_pre_extend > 0:
|
||||
gb, gc, gf, gh, gw = latent_image.shape
|
||||
latent_image = torch.cat(
|
||||
[latent_image, torch.zeros((gb, gc, _ghost_pre_extend, gh, gw), dtype=latent_image.dtype, device=latent_image.device)],
|
||||
dim=2,
|
||||
)
|
||||
mb, mc, mf, mh, mw = noise_mask.shape
|
||||
noise_mask = torch.cat(
|
||||
[noise_mask, torch.ones((mb, mc, _ghost_pre_extend, mh, mw), dtype=noise_mask.dtype, device=noise_mask.device)],
|
||||
dim=2,
|
||||
)
|
||||
|
||||
_, _, latent_length, latent_height, latent_width = latent_image.shape
|
||||
initial_latent_length = int(latent_length)
|
||||
|
||||
# MSR mode: the Director handed us the raw references; inject them at THIS node's
|
||||
# resolution (so a half-res Stage 1 and a full-res Stage 2 each stay self-consistent).
|
||||
msr = guide_data.get("msr")
|
||||
# Licon MSR (Prefix) mode: the Director handed us raw references via guide_data["msr"].
|
||||
# Inject them at THIS node's resolution (so a half-res Stage 1 and full-res Stage 2 each
|
||||
# stay self-consistent), then return early — the standard guide paths don't apply.
|
||||
msr = guide_data.get("msr") if guide_data else None
|
||||
if msr is not None:
|
||||
return cls._inject_msr(positive, negative, vae, latent_image, noise_mask, msr, msr_strength)
|
||||
return cls._inject_msr(positive, negative, vae, latent_image, noise_mask, msr, model, latent_downscale_factor, msr_strength)
|
||||
|
||||
images = guide_data.get("images", [])
|
||||
insert_frames = guide_data.get("insert_frames", [])
|
||||
strengths = guide_data.get("strengths", [])
|
||||
# Parse timeline JSON to see if retake mode is active in UI
|
||||
import json
|
||||
timeline_data_str = guide_data.get("timeline_data", "{}") if guide_data else "{}"
|
||||
try:
|
||||
tdata = json.loads(timeline_data_str)
|
||||
except Exception:
|
||||
tdata = {}
|
||||
|
||||
is_retake_active = bool(retake_mode) or tdata.get("retakeMode", False)
|
||||
is_empty_latent = (latent_image.abs().max().item() < 1e-5)
|
||||
|
||||
for idx, img_tensor in enumerate(images):
|
||||
f_idx = insert_frames[idx] if idx < len(insert_frames) else 0
|
||||
strength = strengths[idx] if idx < len(strengths) else 1.0
|
||||
# Director image guides and motion video segments
|
||||
images = guide_data.get("images", []) if guide_data else []
|
||||
insert_frames = guide_data.get("insert_frames", []) if guide_data else []
|
||||
strengths = guide_data.get("strengths", []) if guide_data else []
|
||||
|
||||
director_fps = float((motion_guide_data or {}).get("frame_rate", guide_data.get("frame_rate", 24) if guide_data else 24))
|
||||
segments = (motion_guide_data or {}).get("segments", [])
|
||||
|
||||
is_lora_active = (model is not None) and (ic_lora_name != "None")
|
||||
time_scale_factor = scale_factors[0]
|
||||
ltxv_length = (latent_length - 1) * time_scale_factor + 1
|
||||
|
||||
image_1, t = cls.encode(vae, latent_width, latent_height, img_tensor, scale_factors)
|
||||
frame_idx, latent_idx = cls.get_latent_index(positive, latent_length, len(image_1), f_idx, scale_factors)
|
||||
# -----------------------------------------------------------------------
|
||||
# Retake Mode Branch:
|
||||
# Load single base video, encode continuously, apply temporal mask.
|
||||
# -----------------------------------------------------------------------
|
||||
if is_retake_active:
|
||||
print(f"[LTXDirectorGuide] Retake Mode active. Preserving base latent, masking selected regions. is_empty_latent: {is_empty_latent}")
|
||||
target_width = latent_width * 32
|
||||
target_height = latent_height * 32
|
||||
|
||||
assert latent_idx + t.shape[2] <= latent_length, (
|
||||
f"Guide image {idx + 1}: conditioning frames exceed the length of the latent sequence."
|
||||
)
|
||||
# Calculate retake region latent indices first so we know what to copy/paste
|
||||
retake_start = int(tdata.get("retakeStart", 0))
|
||||
retake_len = int(tdata.get("retakeLength", 0))
|
||||
retake_strength = float(tdata.get("retakeStrength", 1.0))
|
||||
|
||||
positive, negative, latent_image, noise_mask = cls.append_keyframe(
|
||||
positive, negative, frame_idx, latent_image, noise_mask, t, strength, scale_factors,
|
||||
)
|
||||
start_frame = int(guide_data.get("start_frame", 0))
|
||||
relative_start = max(0, retake_start - start_frame)
|
||||
|
||||
l_start = relative_start // time_scale_factor
|
||||
l_end = int(math.ceil((relative_start + retake_len) / time_scale_factor))
|
||||
|
||||
l_start = min(l_start, latent_length)
|
||||
l_end = min(l_end, latent_length)
|
||||
|
||||
return io.NodeOutput(positive, negative, {"samples": latent_image, "noise_mask": noise_mask})
|
||||
# Stage 2 optimization: If the retake region covers the entire generation area,
|
||||
# there are no preserved regions to copy over in Stage 2. We can bypass video loading/encoding.
|
||||
need_base_video = True
|
||||
if not is_empty_latent and l_start == 0 and l_end >= latent_length:
|
||||
need_base_video = False
|
||||
print("[LTXDirectorGuide] Stage 2: Retake region covers the entire generated range. Skipping base video loading and VAE encoding.")
|
||||
|
||||
# 1. Try to load and encode base video from timeline data
|
||||
retake_vid_info = tdata.get("retakeVideo") or {}
|
||||
video_file = retake_vid_info.get("imageFile", "") if isinstance(retake_vid_info, dict) else ""
|
||||
|
||||
# Fallback to first segment only if it exists and we have no retake video info at all (old workflows)
|
||||
if not video_file and not retake_vid_info and len(segments) > 0:
|
||||
video_file = segments[0].get("videoFile", "")
|
||||
|
||||
if need_base_video:
|
||||
if not video_file:
|
||||
if retake_vid_info and not retake_vid_info.get("imageFile"):
|
||||
raise ValueError(
|
||||
"Retake Mode is active, but the base video file upload is still in progress (or failed). "
|
||||
"Please wait for the 'Uploading base video...' overlay on the timeline to disappear before queuing the prompt."
|
||||
)
|
||||
else:
|
||||
raise ValueError(
|
||||
"Retake Mode is active, but no base video has been selected on the timeline. "
|
||||
"Please drag and drop or upload a base video on the timeline first."
|
||||
)
|
||||
|
||||
if video_file and need_base_video:
|
||||
try:
|
||||
print(f"[LTXDirectorGuide] Loading and encoding base video file: {video_file} starting at frame {start_frame} for length {ltxv_length} at resolution {target_width}x{target_height}")
|
||||
video_frames = _load_motion_video_frames(
|
||||
video_file, trim_start_frames=start_frame, length_frames=ltxv_length, director_fps=director_fps, resample_mode="nearest"
|
||||
)
|
||||
|
||||
# Retake base video must match the exact target latent shape.
|
||||
# "maintain aspect ratio" doesn't pad, which causes shape mismatch in VAE encode.
|
||||
# So we fallback "maintain aspect ratio" to "pad" for retake base video.
|
||||
retake_resize_method = active_resize_method
|
||||
if retake_resize_method == "maintain aspect ratio":
|
||||
retake_resize_method = "pad"
|
||||
|
||||
pixels = _resize_image(video_frames, target_width, target_height, retake_resize_method, divisible_by=1)
|
||||
|
||||
num_clip_frames = pixels.shape[0]
|
||||
num_frames_to_keep = ((num_clip_frames - 1) // time_scale_factor) * time_scale_factor + 1
|
||||
encode_src = pixels[:num_frames_to_keep, :, :, :3]
|
||||
|
||||
if use_tiled_encode:
|
||||
base_latent = vae.encode_tiled(encode_src, tile_x=tile_size, tile_y=tile_size, overlap=tile_overlap)
|
||||
else:
|
||||
base_latent = vae.encode(encode_src)
|
||||
|
||||
base_latent = base_latent.to(device=latent_image.device, dtype=latent_image.dtype)
|
||||
|
||||
# Copy to latent_image
|
||||
paste_len = min(base_latent.shape[2], latent_length)
|
||||
if is_empty_latent:
|
||||
# Stage 1: Overwrite entire latent with base video VAE encode
|
||||
latent_image[:, :, :paste_len] = base_latent[:, :, :paste_len]
|
||||
else:
|
||||
# Stage 2: Overwrite only preserved regions (before l_start and after l_end)
|
||||
# leaving the generated retake region from Stage 1 untouched
|
||||
print(f"[LTXDirectorGuide] Stage 2: Copying high-resolution base latent for preserved regions (0-{l_start} and {l_end}-{paste_len})")
|
||||
if l_start > 0:
|
||||
latent_image[:, :, :l_start] = base_latent[:, :, :l_start]
|
||||
if l_end < paste_len:
|
||||
latent_image[:, :, l_end:paste_len] = base_latent[:, :, l_end:paste_len]
|
||||
except Exception as e:
|
||||
print(f"[LTXDirectorGuide] Failed to load/encode base video: {e}. Falling back to input latent.")
|
||||
|
||||
# 2. Build the temporal noise mask (0.0 = frozen, 1.0 = regenerate)
|
||||
noise_mask = torch.zeros_like(noise_mask) # Initialize fully frozen
|
||||
|
||||
l_start = min(l_start, latent_length)
|
||||
l_end = min(l_end, latent_length)
|
||||
|
||||
if l_end > l_start:
|
||||
noise_mask[:, :, l_start:l_end] = retake_strength
|
||||
|
||||
print(f"[LTXDirectorGuide] noise_mask slice: {noise_mask[0, 0, :, 0, 0].tolist()}")
|
||||
|
||||
# In retake mode, skip normal mode processing entirely and return immediately!
|
||||
exact_crop_frames = max(0, int(latent_image.shape[2]) - initial_latent_length)
|
||||
positive = node_helpers.conditioning_set_values(positive, {"nghtdrp_guide_crop_latent_frames": exact_crop_frames})
|
||||
negative = node_helpers.conditioning_set_values(negative, {"nghtdrp_guide_crop_latent_frames": exact_crop_frames})
|
||||
return (positive, negative, {"samples": latent_image, "noise_mask": noise_mask}, model, float(latent_downscale_factor))
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# Standard Timeline Keyframe Guidance:
|
||||
# Appends image segments as keyframes (and motion segments if present)
|
||||
# to the latent stream using standard LTX-Video cross-attention conditioning.
|
||||
# Registers guide attention entries if IC-LoRA is active.
|
||||
# -----------------------------------------------------------------------
|
||||
if len(images) > 0 or len(segments) > 0:
|
||||
print(f"[LTXDirectorGuide] Using Appended Keyframe Guidance. is_lora_active: {is_lora_active}")
|
||||
|
||||
# A. Process Image Guides
|
||||
for idx, img_tensor in enumerate(images):
|
||||
f_idx = insert_frames[idx] if idx < len(insert_frames) else 0
|
||||
strength = float(strengths[idx] if idx < len(strengths) else 1.0)
|
||||
if strength <= 0.0:
|
||||
continue
|
||||
|
||||
B_img, H_img, W_img, C_img = img_tensor.shape
|
||||
target_pix_w = int(latent_width * 32)
|
||||
target_pix_h = int(latent_height * 32)
|
||||
if target_pix_w != W_img or target_pix_h != H_img:
|
||||
img_nchw = img_tensor.permute(0, 3, 1, 2)
|
||||
img_resized = comfy.utils.common_upscale(img_nchw, target_pix_w, target_pix_h, upscale_method, "disabled")
|
||||
img_tensor = img_resized.permute(0, 2, 3, 1)
|
||||
|
||||
image_pixels, guide_latent = nodes_lt.LTXVAddGuide.encode(vae, latent_width, latent_height, img_tensor, scale_factors)
|
||||
frame_idx, latent_idx = nodes_lt.LTXVAddGuide.get_latent_index(positive, latent_length, len(image_pixels), int(f_idx), scale_factors)
|
||||
|
||||
if latent_idx >= latent_length:
|
||||
continue
|
||||
|
||||
max_frames = latent_length - latent_idx
|
||||
if guide_latent.shape[2] > max_frames:
|
||||
guide_latent = guide_latent[:, :, :max_frames]
|
||||
|
||||
tokens_added = guide_latent.shape[2] * guide_latent.shape[3] * guide_latent.shape[4]
|
||||
guide_orig_shape = list(guide_latent.shape[2:])
|
||||
|
||||
positive, negative, latent_image, noise_mask = nodes_lt.LTXVAddGuide.append_keyframe(
|
||||
positive, negative, frame_idx, latent_image, noise_mask, guide_latent, strength, scale_factors
|
||||
)
|
||||
if is_lora_active:
|
||||
positive = _append_guide_attention_entry(positive, tokens_added, guide_orig_shape, attention_strength=image_attention_strength)
|
||||
negative = _append_guide_attention_entry(negative, tokens_added, guide_orig_shape, attention_strength=image_attention_strength)
|
||||
|
||||
# B. Process Motion Video Segments
|
||||
for seg in segments:
|
||||
try:
|
||||
video_file = seg.get("videoFile")
|
||||
if not video_file:
|
||||
continue
|
||||
|
||||
start_frame = int(seg.get("start", 0))
|
||||
length_frames = int(seg.get("length", 1))
|
||||
trim_start = int(seg.get("trimStart", 0))
|
||||
video_strength = float(seg.get("videoStrength", 1.0))
|
||||
video_attention_strength = float(seg.get("videoAttentionStrength", 0.65))
|
||||
|
||||
if length_frames <= 0 or video_strength <= 0.0:
|
||||
continue
|
||||
|
||||
start_frame_aligned = start_frame
|
||||
video_frames = _load_motion_video_frames(video_file, trim_start, length_frames, director_fps, seg.get("resampleMode", "nearest"))
|
||||
|
||||
num_frames_to_keep = ((video_frames.shape[0] - 1) // time_scale_factor) * time_scale_factor + 1
|
||||
video_frames = video_frames[:num_frames_to_keep]
|
||||
causal_fix = int(start_frame_aligned) == 0 or num_frames_to_keep == 1
|
||||
encode_frames = video_frames if causal_fix else torch.cat([video_frames[:1], video_frames], dim=0)
|
||||
|
||||
_, guide_latent = _encode_video_iclora_guide(vae, latent_width, latent_height, encode_frames, scale_factors, latent_downscale_factor, crop, use_tiled_encode, tile_size, tile_overlap, resize_method=active_resize_method)
|
||||
|
||||
if not causal_fix:
|
||||
guide_latent = guide_latent[:, :, 1:, :, :]
|
||||
|
||||
frame_idx = start_frame_aligned
|
||||
latent_idx = (frame_idx + time_scale_factor - 1) // time_scale_factor if frame_idx > 0 else 0
|
||||
|
||||
if latent_idx >= latent_length:
|
||||
continue
|
||||
|
||||
if start_frame > 0 and guide_latent.shape[2] > 1:
|
||||
guide_latent = guide_latent[:, :, 1:, :, :]
|
||||
frame_idx += time_scale_factor
|
||||
latent_idx += 1
|
||||
if latent_idx >= latent_length:
|
||||
continue
|
||||
|
||||
max_frames = latent_length - latent_idx
|
||||
if guide_latent.shape[2] > max_frames:
|
||||
guide_latent = guide_latent[:, :, :max_frames]
|
||||
|
||||
guide_orig_shape = list(guide_latent.shape[2:])
|
||||
|
||||
B_g, C_g, F_g, H_g, W_g = guide_latent.shape
|
||||
guide_mask = torch.ones((B_g, 1, F_g, H_g, W_g), device=guide_latent.device, dtype=guide_latent.dtype)
|
||||
|
||||
if start_frame > 0:
|
||||
ramp_steps = [0.25, 0.65]
|
||||
for i, s in enumerate(ramp_steps):
|
||||
if i < F_g:
|
||||
guide_mask_val = 1.0 + video_strength * (1.0 - s)
|
||||
guide_mask[:, :, i, :, :] = guide_mask_val
|
||||
|
||||
ldf = int(max(1, round(float(latent_downscale_factor))))
|
||||
if ldf > 1:
|
||||
dilated = _dilate_latent({"samples": guide_latent, "noise_mask": guide_mask}, horizontal_scale=ldf, vertical_scale=ldf)
|
||||
guide_mask = dilated["noise_mask"]
|
||||
guide_latent = dilated["samples"]
|
||||
|
||||
tokens_added = guide_latent.shape[2] * guide_latent.shape[3] * guide_latent.shape[4]
|
||||
positive, negative, latent_image, noise_mask = nodes_lt.LTXVAddGuide.append_keyframe(
|
||||
positive, negative, frame_idx, latent_image, noise_mask, guide_latent, video_strength, scale_factors, guide_mask=guide_mask, latent_downscale_factor=float(latent_downscale_factor), causal_fix=causal_fix
|
||||
)
|
||||
if is_lora_active:
|
||||
positive = _append_guide_attention_entry(positive, tokens_added, guide_orig_shape, attention_strength=video_attention_strength)
|
||||
negative = _append_guide_attention_entry(negative, tokens_added, guide_orig_shape, attention_strength=video_attention_strength)
|
||||
except Exception as e:
|
||||
raise RuntimeError(f"LTX Director Guide motion segment failed for {seg}: {e}") from e
|
||||
|
||||
else:
|
||||
print("[LTXDirectorGuide] No timeline guides present. Passing through.")
|
||||
|
||||
exact_crop_frames = max(0, int(latent_image.shape[2]) - initial_latent_length)
|
||||
positive = node_helpers.conditioning_set_values(positive, {"nghtdrp_guide_crop_latent_frames": exact_crop_frames})
|
||||
negative = node_helpers.conditioning_set_values(negative, {"nghtdrp_guide_crop_latent_frames": exact_crop_frames})
|
||||
|
||||
return (positive, negative, {"samples": latent_image, "noise_mask": noise_mask}, model, float(latent_downscale_factor))
|
||||
|
||||
@classmethod
|
||||
def _inject_msr(cls, positive, negative, vae, latent_image, noise_mask, msr, msr_strength=0.0):
|
||||
"""Inject the Licon MSR references at this node's current resolution."""
|
||||
def _inject_msr(cls, positive, negative, vae, latent_image, noise_mask, msr, model, latent_downscale_factor, msr_strength=0.0):
|
||||
"""Inject the Licon MSR references at this node's current resolution.
|
||||
|
||||
Returns this node's 5-tuple (positive, negative, latent, model, latent_downscale_factor).
|
||||
"""
|
||||
from nodes import NODE_CLASS_MAPPINGS
|
||||
from .ltx_director import _execute_comfy_node, _unpack
|
||||
|
||||
IC = NODE_CLASS_MAPPINGS.get("LTXAddVideoICLoRAGuide")
|
||||
AG = NODE_CLASS_MAPPINGS.get("LTXVAddGuide")
|
||||
@@ -118,6 +649,8 @@ class LTXDirectorGuide(LTXVAddGuide):
|
||||
strength = clamp01(msr_strength) if float(msr_strength) > 0.0 else clamp01(msr["strength"])
|
||||
downscale = float(msr["downscale"])
|
||||
|
||||
initial_latent_length = int(latent_image.shape[2])
|
||||
|
||||
# Pad the generated region so (pad + keyframes) == prefix_latents, so the downstream crop
|
||||
# (which trims the slideshow's temporal footprint) lands on the true clean length.
|
||||
pad_latents = max(0, prefix_latents - len(keyframes))
|
||||
@@ -140,15 +673,95 @@ class LTXDirectorGuide(LTXVAddGuide):
|
||||
IC, positive=positive, negative=negative, vae=vae, latent=latent, image=slideshow,
|
||||
frame_idx=0, strength=strength, latent_downscale_factor=downscale,
|
||||
crop="center", use_tiled_encode=False, tile_size=256, tile_overlap=64,
|
||||
))
|
||||
|
||||
))[:3]
|
||||
positive, negative = cp, cn
|
||||
|
||||
# LATENT PATH: one frozen keyframe per reference at frame 0 -> keep latent, drop cond.
|
||||
for kf in keyframes:
|
||||
_p, _n, latent = _unpack(_execute_comfy_node(
|
||||
unpacked = _unpack(_execute_comfy_node(
|
||||
AG, positive=positive, negative=negative, vae=vae, latent=latent,
|
||||
image=kf, frame_idx=0, strength=strength,
|
||||
))
|
||||
latent = unpacked[2]
|
||||
|
||||
return io.NodeOutput(positive, negative, latent)
|
||||
# NOTE: MSR is a PREFIX. We deliberately do NOT set nghtdrp_guide_crop_latent_frames
|
||||
# (the new LTXDirectorCropGuides trims from the END, which would cut clean frames).
|
||||
# The IC/AG nodes write position-aware keyframe metadata into the conditioning, so the
|
||||
# MSR branch of the workflow should crop with the STOCK position-aware LTXVCropGuides
|
||||
# node (exactly as the old MSR pipeline did).
|
||||
return (positive, negative, latent, model, float(latent_downscale_factor))
|
||||
|
||||
|
||||
def _conditioning_get_any_value(conditioning, key, default=None):
|
||||
for item in conditioning:
|
||||
meta = item[1]
|
||||
if key in meta and meta.get(key) is not None:
|
||||
return meta.get(key)
|
||||
return default
|
||||
|
||||
def _get_exact_crop_count_from_conditioning(conditioning):
|
||||
value = _conditioning_get_any_value(conditioning, "nghtdrp_guide_crop_latent_frames", None)
|
||||
if value is not None:
|
||||
try:
|
||||
return max(0, int(value))
|
||||
except Exception:
|
||||
return 0
|
||||
keyframe_idxs = _conditioning_get_any_value(conditioning, "keyframe_idxs", None)
|
||||
if keyframe_idxs is None:
|
||||
return 0
|
||||
try:
|
||||
return int(torch.unique(keyframe_idxs[:, 0, :, 0]).shape[0])
|
||||
except Exception:
|
||||
return 0
|
||||
|
||||
def _get_noise_mask_for_crop(latent):
|
||||
latent_image = latent["samples"]
|
||||
noise_mask = latent.get("noise_mask", None)
|
||||
if noise_mask is None:
|
||||
batch, _, frames, _, _ = latent_image.shape
|
||||
return torch.ones((batch, 1, frames, 1, 1), dtype=torch.float32, device=latent_image.device)
|
||||
return noise_mask.clone()
|
||||
|
||||
|
||||
class LTXDirectorCropGuides:
|
||||
@classmethod
|
||||
def INPUT_TYPES(cls):
|
||||
return {
|
||||
"required": {
|
||||
"positive": ("CONDITIONING",),
|
||||
"negative": ("CONDITIONING",),
|
||||
"latent": ("LATENT",),
|
||||
}
|
||||
}
|
||||
|
||||
RETURN_TYPES = ("CONDITIONING", "CONDITIONING", "LATENT")
|
||||
RETURN_NAMES = ("positive", "negative", "latent")
|
||||
FUNCTION = "execute"
|
||||
CATEGORY = "WhatDreamsCost CS"
|
||||
|
||||
def execute(self, positive, negative, latent):
|
||||
latent_image = latent["samples"].clone()
|
||||
noise_mask = _get_noise_mask_for_crop(latent)
|
||||
|
||||
crop_frames = _get_exact_crop_count_from_conditioning(positive)
|
||||
if crop_frames <= 0:
|
||||
return (positive, negative, {"samples": latent_image, "noise_mask": noise_mask})
|
||||
|
||||
crop_frames = min(crop_frames, max(0, latent_image.shape[2] - 1))
|
||||
if crop_frames > 0:
|
||||
latent_image = latent_image[:, :, :-crop_frames]
|
||||
noise_mask = noise_mask[:, :, :-crop_frames]
|
||||
|
||||
clear_values = {
|
||||
"keyframe_idxs": None,
|
||||
"guide_attention_entries": None,
|
||||
"nghtdrp_guide_crop_latent_frames": None,
|
||||
}
|
||||
positive = node_helpers.conditioning_set_values(positive, clear_values)
|
||||
negative = node_helpers.conditioning_set_values(negative, clear_values)
|
||||
return (positive, negative, {"samples": latent_image, "noise_mask": noise_mask})
|
||||
|
||||
NODE_CLASS_MAPPINGS = {
|
||||
"LTXDirectorGuideCS": LTXDirectorGuide,
|
||||
"LTXDirectorCropGuidesCS": LTXDirectorCropGuides,
|
||||
}
|
||||
Reference in New Issue
Block a user