Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Build WAN 2.2 First-Last-Frame video workflows — native dual hi-lo (required), and WanVideoWrapper VACE approaches
.claude/skills/artokun-wan-flf-video/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-17 | ✗→✓ | ▲ Improved | 205% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 194% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 178% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 144% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 190% | 0% |
First-Last-Frame (FLF) video generation takes a start image and an end image and generates a smooth video transition between them. WAN 2.2 I2V (Image-to-Video) 14B model excels at this.
WAN 2.2 I2V uses a split-noise architecture. Unlike WAN 2.1, the 2.2 model was trained with separate HighNoise and LowNoise components that handle different denoising ranges. You MUST use both models in a two-pass KSamplerAdvanced setup. Using a single model produces low-quality, broken output.
WanFirstLastFrameToVideoNEVER use a single KSampler with only one model for WAN 2.2 I2V.
Two native approaches are available:
WanFirstLastFrameToVideo + dual KSamplerAdvanced two-passWanVideoVACEStartToEndFrame + WanVideoVACEEncode + WanVideoSampler (VACE, caching, context windows)Remix NSFW (Recommended — built-in lightning, fp16): | Model | Loader | Notes | |-------|--------|-------| | Wan2.2_Remix_NSFW_i2v_14b_high_lighting_fp16_v2.1.safetensors | UNETLoader | HighNoise, built-in lightning acceleration | | Wan2.2_Remix_NSFW_i2v_14b_low_lighting_fp16_v2.1.safetensors | UNETLoader | LowNoise, built-in lightning acceleration |
GGUF Q8 (Alternative — needs external lightning LoRAs): | Model | Loader | Notes | |-------|--------|-------| | Wan2.2-I2V-A14B-HighNoise-Q8_0.gguf | UnetLoaderGGUF | HighNoise, quantized | | Wan2.2-I2V-A14B-LowNoise-Q8_0.gguf | UnetLoaderGGUF | LowNoise, quantized |
Official fp8: | Model | Loader | Notes | |-------|--------|-------| | wan2.2_i2v_high_noise_14B_fp8_scaled.safetensors | UNETLoader | HighNoise, needs lightning LoRA | | wan2.2_i2v_low_noise_14B_fp8_scaled.safetensors | UNETLoader | LowNoise, needs lightning LoRA |
| Model | Node | Notes | |-------|------|-------| | nsfw_wan_umt5-xxl_bf16_fixed.safetensors | CLIPLoaderGGUF (type=wan) | NSFW-tuned, pair with Remix models | | umt5_xxl_fp8_e4m3fn_scaled.safetensors | CLIPLoader (type=wan) | Standard UMT5-XXL fp8 |
| Component | Node | Model | |-----------|------|-------| | CLIP Vision | CLIPVisionLoader | clip_vision_h.safetensors | | VAE | VAELoader | wan_2.1_vae.safetensors |
WAN 2.2 uses flow matching and requires ModelSamplingSD3 applied to each UNET:
json{"class_type": "ModelSamplingSD3", "inputs": {"model": ["<unet>", 0], "shift": 5}}
shift=5 for lightning/Remix models. shift=8 for standard (non-lightning) models.
Remix NSFW models have lightning baked in — no external LoRA needed.
For GGUF/fp8 models, use paired hi/lo lightning LoRAs:
wan2.2_i2v_lightx2v_4steps_lora_v1_high_noise.safetensors → HighNoise UNETwan2.2_i2v_lightx2v_4steps_lora_v1_low_noise.safetensors → LowNoise UNETEach model path has two stacked loaders (Common + Specific), each supporting 4 LoRA slots:
Hi path: UNETLoader(HN) → ModelSamplingSD3(shift=5) → Hi Common Stack → Hi Lora Stack → MODEL_HI
Lo path: UNETLoader(LN) → ModelSamplingSD3(shift=5) → Lo Common Stack → Lo Lora Stack → MODEL_LOCommon stacks hold shared LoRAs (quality/style). Specific stacks hold model-variant LoRAs. Set slots to "None" when unused. Even with no LoRAs, include the stacks — they pass CLIP through for text encoding.
Input frames MUST be resized to the target video resolution before FLF and CLIPVisionEncode. The end frame inherits width/height from the start frame's resize to ensure matching dimensions.
json{"class_type": "ImageResizeKJv2", "inputs": { "image": ["<load_image>", 0], "width": 480, "height": 720, "upscale_method": "nearest-exact", "keep_proportion": "crop", "pad_color": "0, 0, 0", "crop_position": "center", "divisible_by": 2 }}
| Parameter | Pass 1 (Hi) | Pass 2 (Lo) | |-----------|-------------|-------------| | model | Hi LoRA stack output | Lo LoRA stack output | | add_noise | enable | disable | | steps | 4 | 4 | | cfg | 1 | 1 | | sampler_name | uni_pc | uni_pc | | scheduler | beta | beta | | start_at_step | 0 | 2 | | end_at_step | 2 | 4 | | return_with_leftover_noise | enable | disable | | latent_image | WanFLF output2] | Pass 1 output0] |
Both passes share the same positive/negative conditioning from WanFirstLastFrameToVideo outputs 0] and 1].
For standard (non-lightning) models: steps=20, split at step 10, cfg=4, sampler=euler, scheduler=simple, shift=8.
Always include a quality negative prompt:
The tones are vibrant, overexposed, static, details are unclear, subtitles, style, work, painting, image, still, overall grayish, worst quality, low quality, JPEG compression artifacts, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn faces, deformed, disfigured, distorted limbs, merged fingers, motionless image, cluttered background, three legs, many people in the background, walking backwardsRequired Inputs:
- positive: CONDITIONING (from CLIPTextEncode)
- negative: CONDITIONING (from CLIPTextEncode with negative prompt)
- vae: VAE
- width: INT (from ImageResizeKJv2 end frame output[1])
- height: INT (from ImageResizeKJv2 end frame output[2])
- length: INT (default 81, step 4) — number of frames
- batch_size: INT (default 1)
Optional Inputs:
- clip_vision_start_image: CLIP_VISION_OUTPUT (from CLIPVisionEncode)
- clip_vision_end_image: CLIP_VISION_OUTPUT (from CLIPVisionEncode)
- start_image: IMAGE (resized start frame)
- end_image: IMAGE (resized end frame)
Outputs:
- [0] positive: CONDITIONING → feed to BOTH Hi and Lo KSamplerAdvanced
- [1] negative: CONDITIONING → feed to BOTH Hi and Lo KSamplerAdvanced
- [2] latent: LATENT → feed to Hi Pass only (Lo Pass gets Hi Pass output)UNETLoader (HighNoise) → ModelSamplingSD3 (shift=5) → Hi Common Stack → Hi Lora Stack → MODEL_HI
UNETLoader (LowNoise) → ModelSamplingSD3 (shift=5) → Lo Common Stack → Lo Lora Stack → MODEL_LO
CLIPLoaderGGUF (wan) → CLIP
├─ CLIPTextEncode (positive) → CONDITIONING
└─ CLIPTextEncode (negative) → CONDITIONING
CLIPVisionLoader → CLIPVisionEncode (start) + CLIPVisionEncode (end)
VAELoader → VAE
LoadImage (start) → ImageResizeKJv2 (480x720) → resized start
LoadImage (end) → ImageResizeKJv2 (match dims) → resized end
WanFirstLastFrameToVideo (positive, negative, vae, clip_vision_start, clip_vision_end,
start_image, end_image, width/height from resize)
→ modified positive [0], modified negative [1], latent [2]
KSamplerAdvanced (Hi: MODEL_HI, steps 0→2, add_noise=enable, return_leftover=enable)
→ noisy LATENT
KSamplerAdvanced (Lo: MODEL_LO, steps 2→4, add_noise=disable, return_leftover=disable)
→ final LATENT
VAEDecode → IMAGE → VHS_VideoCombine (raw output)
→ VRAM_Debug → SeedVR2VideoUpscaler (1080p) → VHS_VideoCombine (upscaled)The full Native FLF (Remix NSFW + Lightning) graph is in references/workflows.md.
Add after VAEDecode for AI-powered video upscaling to 1080p. Use VRAM_Debug to free VRAM between generation and upscaling:
json{ "25": { "class_type": "VRAM_Debug", "inputs": { "image_pass": ["23", 0], "empty_cache": true, "gc_collect": true, "unload_all_models": true }}, "26": { "class_type": "SeedVR2LoadDiTModel", "inputs": { "model": "seedvr2_ema_3b_fp8_e4m3fn.safetensors", "device": "cuda:0", "blocks_to_swap": 0, "swap_io_components": false, "cache_model": false, "attention_mode": "sdpa" }}, "27": { "class_type": "SeedVR2LoadVAEModel", "inputs": { "model": "ema_vae_fp16.safetensors", "device": "cuda:0", "encode_tiled": false, "decode_tiled": false, "cache_model": false }}, "28": { "class_type": "SeedVR2VideoUpscaler", "inputs": { "image": ["25", 1], "dit": ["26", 0], "vae": ["27", 0], "seed": 0, "resolution": 1080, "max_resolution": 0, "batch_size": 5, "uniform_batch_size": false, "color_correction": "lab" }}, "29": { "class_type": "VHS_VideoCombine", "inputs": { "images": ["28", 0], "frame_rate": 16, "loop_count": 0, "filename_prefix": "wan_flf_upscaled", "format": "video/h264-mp4", "pingpong": false, "save_output": true, "pix_fmt": "yuv420p", "crf": 19, "save_metadata": true, "trim_to_audio": false }} }
When using GGUF Q8 models instead of Remix, add paired lightning LoRAs:
Hi path: UnetLoaderGGUF(HN Q8) → ModelSamplingSD3(shift=5) → LoraLoaderModelOnly(hi_noise_lightning) → Hi Common Stack → Hi Lora Stack
Lo path: UnetLoaderGGUF(LN Q8) → ModelSamplingSD3(shift=5) → LoraLoaderModelOnly(lo_noise_lightning) → Lo Common Stack → Lo Lora StackLoRA files:
Unknown\no tags\wan2.2_i2v_lightx2v_4steps_lora_v1_high_noise.safetensorsUnknown\no tags\wan2.2_i2v_lightx2v_4steps_lora_v1_low_noise.safetensorsUses the WanVideoWrapper custom node pack for more control over conditioning, caching, context windows, and advanced features.
WANVIDEOMODEL type instead of generic MODELWANVIDIMAGE_EMBEDS for conditioning instead of CONDITIONINGWanVideoSampler) with shift parameter and scheduler optionsWanVideoModelLoader → WANVIDEOMODEL
WanVideoVAELoader → WANVAE
WanVideoTextEncode → WANVIDEOTEXTEMBEDS
WanVideoClipVisionEncode (start + end images) → WANVIDIMAGE_CLIPEMBEDS
WanVideoVACEStartToEndFrame (start_image, end_image, num_frames=81)
→ images batch, masks
WanVideoVACEEncode (vae, input_frames, input_masks, width, height, num_frames)
→ WANVIDIMAGE_EMBEDS (vace_embeds)
WanVideoSampler (model, image_embeds, text_embeds, steps, cfg, shift, scheduler)
→ LATENT
WanVideoDecode (vae, samples) → IMAGE → VHS_VideoCombine → MP4| Parameter | Standard | Lightning | Notes | |-----------|----------|-----------|-------| | steps | 30 | 4 | | | cfg | 6.0 | 1.0 | | | shift | 5.0 | 5.0 | Flow matching shift | | scheduler | unipc | euler | WanVideoWrapper has own schedulers | | force_offload | true | true | Move model to CPU after sampling |
| Feature | Native | WanVideoWrapper | |---------|--------|-----------------| | Simplicity | Simpler | More complex | | Dual Hi-Lo | Manual two-pass | May handle internally | | LoRA loading | Lora Loader Stack (rgthree) | WanVideoLoraSelect → WanVideoModelLoader lora (see merge_loras caveat) | | Caching (TeaCache) | Not available | Built-in | | Context windows | Not available | WanVideoContextOptions | | Block swap (VRAM) | Not available | WanVideoBlockSwap | | VACE conditioning | Not available | Full VACE support | | Long video (>81 frames) | Limited | InfiniteTalk / context windows |
Recommendation: Use Native dual hi-lo for standard FLF transitions. Use WanVideoWrapper when you need caching, context windows, VRAM management, or advanced conditioning.
merge_loras=false with fp8-scaled modelsWhen loading a LoRA through WanVideoLoraSelect → WanVideoModelLoader's lora input on an fp8-quantized model (quantization=fp8_e4m3fn_scaled, e.g. the official wan2.2_i2v_high/low_noise_14B_fp8_scaled weights), you MUST set the WanVideoLoraSelect widget merge_loras=false.
merge_loras=true (the node default) tries to bake the LoRA deltas into thealready-quantized fp8 weights. That merge path hard-crashes ComfyUI during LoRA loading — the process dies with no Python traceback (so panel_get_errors / the frontend show nothing; only a process restart/OOM-style symptom). This is the #1 cause of a "crashed on lora loading" report with the wrapper.
merge_loras=false applies the LoRA as a runtime patch during the forwardpass instead of merging — fully fp8-safe, negligible speed cost. This is the correct setting for the lightx2v 4-step lightning LoRAs (hi + lo) on the fp8 hi/lo I2V models.
WanVideoBlockSwap (e.g. 20–30 of 40blocks → RAM) + merge_loras=false is the verified combo for fp8 14B I2V at 720p/81f on a 24GB card. (If you instead use a non-quantized bf16/fp16 model, merge_loras=true is fine.)
Separately, at 720p/81f enable enable_vae_tiling=true on WanVideoDecode — the full-frame decode is the other common uncaught-OOM crash point.
| Aspect | Resolution | Megapixels | |--------|-----------|------------| | Portrait 2:3 | 480x720 | 0.35MP (recommended default) | | Landscape 16:9 | 832x480 | 0.4MP | | Portrait 9:16 | 480x832 | 0.4MP | | Square | 640x640 | 0.4MP |
Width and height must be divisible by 16. Use ImageResizeKJv2 with divisible_by: 2 and keep_proportion: crop.
4n + 1 (1, 5, 9, ..., 49, 81, 121)Standard: 16 fps for WAN 2.2 output.
json{ "class_type": "VHS_VideoCombine", "inputs": { "images": ["<vae_decode>", 0], "frame_rate": 16, "loop_count": 0, "filename_prefix": "wan_flf", "format": "video/h264-mp4", "pingpong": false, "save_output": true, "pix_fmt": "yuv420p", "crf": 19, "save_metadata": true, "trim_to_audio": false } }
ComfyUI manages VRAM by offloading models between passes. The Hi UNET is offloaded before the Lo UNET loads.
clear_vram before switching to WAN from another model familyVRAM_Debug node between generation and SeedVR2 upscaling to free all VRAMBy default, FLF produces a transition/dissolve between frames. For true morphing (one shape seamlessly reshaping into another), use a morph LoRA on both Hi and Lo paths.
| Variant | File | Strength | Notes | |---------|------|----------|-------| | HighNoise | wan2.2_i2v_magical_morph_highnoise.safetensors | 0.7-1.0 | Apply to Hi Common stack | | LowNoise | wan2.2_i2v_magical_morph_lownoise.safetensors | 0.7-1.0 | Apply to Lo Common stack |
For person-to-person morphs (identity, gender transforms):
Skin morphDescribe the transition motion, not just the start/end states:
Good: "A small cat sitting on the ground smoothly transforms and grows into a woman standing tall, seamless transformation, cinematic"
Bad: "A cat and a girl"IMPORTANT — Prompt language affects visuals:
| Config | Lightning (Remix) | Standard | |--------|------------------|----------| | Models | Remix NSFW Hi+Lo fp16 | Official Hi+Lo fp8 | | CLIP | nsfw_wan_umt5-xxl_bf16_fixed | umt5_xxl_fp8_e4m3fn_scaled | | ModelSamplingSD3 shift | 5 | 8 | | Total steps | 4 | 20 | | Hi pass end_at_step | 2 | 10 | | CFG | 1 | 4 | | Sampler | uni_pc | euler | | Scheduler | beta | simple | | External LoRA needed | No (built-in) | Yes (paired hi/lo) |
When the start and end frames have different subject sizes (e.g., small cat → tall person), generate the "anchor" frame first — the one with the most complex composition — then use Qwen Edit to create the other frame from it. This ensures:
Example — Cat-to-Girl Morph:
Anti-pattern: Generating cat and girl independently produces mismatched scale.
upload_image (action:"stage") with each output's { filename, subfolder?, type? } and feed the returned input filename into each LoadImage. (For a frame already on local disk, use upload_image (action:"image").) NEVER copy the output file into, or guess, a filesystem input/ path — ComfyUI's input/output dirs may be CUSTOM (--input-directory / --output-directory), so a guessed path makes LoadImage reject the file (Invalid image file) and wastes the render. upload_image (action:"stage") routes through the server API (/view → /upload/image), which resolves the real dirs correctly.Proven timing on RTX 4090: Z-Image (35s) → Qwen Edit (78s) → WAN FLF 81 frames (139s) = ~4 minutes total.
Use get_workflow (action:"analyze") to understand any saved WAN FLF workflow before modifying or executing it. It returns a structured summary with sections, node IDs, key settings, and virtual wire connections — no raw JSON needed.
get_workflow(action="analyze", filename="Wan FirstLastFrame Advanced.json") # summary view (default)
get_workflow(action="analyze", filename="Wan FirstLastFrame Advanced.json", view="flat") # mermaid diagramOnly use get_workflow when you need the raw JSON for enqueue_workflow or create_workflow (action:"modify").
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-17 | fail→pass | 15,756 | 4,775 | -70% | 1 | 1 | 0% | 2,379 | 7,252 | +205% | 0 | 0 | — |
case-01 | fail→pass | 22,333 | 23,708 | +6% | 1 | 1 | 0% | 3,976 | 11,681 | +194% | 0 | 0 | — |
case-02 | fail→pass | 23,109 | 23,570 | +2% | 1 | 1 | 0% | 4,064 | 11,298 | +178% | 0 | 0 | — |
case-03 | fail→pass | 20,630 | 18,925 | -8% | 1 | 1 | 0% | 4,299 | 10,509 | +144% | 0 | 0 | — |
case-04 | fail→pass | 16,293 | 6,775 | -58% | 1 | 1 | 0% | 2,655 | 7,709 | +190% | 0 | 0 | — |
case-05 | pass→pass | 10,367 | 4,803 | -54% | 1 | 1 | 0% | 1,838 | 7,370 | +301% | 0 | 0 | — |
case-06 | fail→pass | 11,451 | 5,950 | -48% | 1 | 1 | 0% | 1,989 | 7,733 | +289% | 0 | 0 | — |
case-18 | fail→pass | 15,964 | 7,806 | -51% | 1 | 1 | 0% | 2,205 | 7,709 | +250% | 0 | 0 | — |
case-07 | fail→pass | 9,292 | 2,600 | -72% | 1 | 1 | 0% | 1,671 | 6,940 | +315% | 0 | 0 | — |
case-08 | fail→pass | 14,398 | 6,529 | -55% | 1 | 1 | 0% | 2,211 | 7,767 | +251% | 0 | 0 | — |
case-09 | fail→pass | 15,088 | 8,321 | -45% | 1 | 1 | 0% | 2,574 | 8,181 | +218% | 0 | 0 | — |
case-10 | fail→pass | 14,163 | 8,807 | -38% | 1 | 1 | 0% | 2,381 | 8,124 | +241% | 0 | 0 | — |
case-11 | fail→pass | 12,160 | 7,904 | -35% | 1 | 1 | 0% | 2,312 | 8,112 | +251% | 0 | 0 | — |
case-12 | fail→pass | 15,885 | 3,562 | -78% | 1 | 1 | 0% | 2,584 | 7,226 | +180% | 0 | 0 | — |
case-13 | pass→pass | 15,489 | 6,222 | -60% | 1 | 1 | 0% | 2,727 | 7,610 | +179% | 0 | 0 | — |
case-14 | fail→pass | 14,288 | 10,758 | -25% | 1 | 1 | 0% | 2,410 | 8,647 | +259% | 0 | 0 | — |
case-15 | fail→pass | 11,940 | 6,170 | -48% | 1 | 1 | 0% | 1,955 | 7,594 | +288% | 0 | 0 | — |
case-16 | pass→pass | 10,997 | 2,533 | -77% | 1 | 1 | 0% | 1,780 | 6,874 | +286% | 0 | 0 | — |
case-19 | pass→pass | 13,825 | 3,344 | -76% | 1 | 1 | 0% | 2,124 | 7,009 | +230% | 0 | 0 | — |
case-20 | fail→pass | 14,112 | 6,684 | -53% | 1 | 1 | 0% | 2,366 | 7,638 | +223% | 0 | 0 | — |
case-21 | fail→pass | 12,766 | 4,026 | -68% | 1 | 1 | 0% | 2,174 | 7,061 | +225% | 0 | 0 | — |
case-22 | pass→pass | 13,888 | 2,860 | -79% | 1 | 1 | 0% | 2,423 | 6,975 | +188% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +77 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.