Frame Blend · screenshot coming soon
What this node does
Frame Blend combines each output frame with its temporal neighbors. It has two modes:- window — averages (or min/max/sum/product) a window of frames around the current one, optionally with a decay weighting. Good for motion trails, ghosting, and long-exposure looks.
- shutter — simulates a virtual shutter by sampling and averaging within a time window, producing smooth synthetic motion blur.
video. In goes COMFYTV_VIDEO, out comes COMFYTV_VIDEO.
To hand the result to a native ComfyUI node, insert a Bridge. See bridges.md.
When to use it
- Add motion trails or echo to moving subjects.
- Fake a long-exposure / light-trail look.
- Add smooth motion blur to a clip that was rendered without it.
Parameters
mode
window or shutter, default window. Selects which set of controls below is used. The window/shutter mode ignores the other mode’s parameters.
Window-mode parameters
Used whenmode is window.
- frame_min
-60–0, default-5— first frame of the blend window, relative to the current frame (negative = earlier frames). - frame_max
0–60, default0— last frame of the window, relative to the current frame (positive = later frames). - interval
1–10, default1— step between sampled frames in the window;2uses every other frame, etc. - operation one of
average,min,max,sum,product, defaultaverage— how the sampled frames are combined. - decay
0.0–1.0, default0.0— weighting falloff so more distant frames contribute less (0.0= equal weight, i.e. no decay).
Shutter-mode parameters
Used whenmode is shutter.
- shutter
0.0–8.0(step0.05), default0.5— shutter angle / open time; larger = more motion blur. - shutter_type one of
centered,start,end,custom, defaultcentered— where the shutter window sits relative to the frame. - shutter_offset
-8.0–8.0(step0.05), default0.0— shifts the shutter window in time (used withcustom). - divisions
1–64, default10— number of sub-samples taken across the shutter window; more = smoother blur, slower render.
Outputs
Tips
- For classic motion trails, use
windowwithframe_minnegative andframe_max0so it looks back in time only. - For smooth motion blur, use
shutterand raisedivisionsif you see stepping in the blur. intervalabove1skips frames — handy for a stroboscopic trail.
Related nodes
- Glow — for a bloom, not a temporal trail.
- Old Film — for temporal flicker rather than motion blending.