VACE Clip List (Up To 3)
The pack's simpler little brother
- clip_1
- clip_2
- clip_3
- clips
- fps
- clip_count
VACE Clip List (Up To 3) is the old guard of this pack. Before the autogrowing VACE Clip Collector came along, this was how you assembled a clip list: exactly two required clips, one optional third, and FPS passed in by hand. The README is upfront that it's now "a small prototype/helper node" and that the preferred front-end for real use is the Collector - but it still works fine, and for a quick two-or-three-clip join it's genuinely less intimidating than the autogrow version.
How it works
Where the Collector reads everything out of native VIDEO objects, this node takes bare IMAGE frame batches and expects you to supply the FPS separately. That's why the fps_1 and fps_2 inputs are forced inputs - you can't leave them hanging, you have to wire them from whatever loaded the video (a VACELoadVideoFromPath, a video loader node, or a FPS output from your frame-extraction setup).
Given the clips and their FPS, the node validates the same things the Collector does: all clips must share resolution/channels, all FPS values must match within float tolerance. Same errors, same fix - re-encode or re-load the offending clip.
Inputs and outputs
clip_1,clip_2(requiredIMAGE),clip_3(optionalIMAGE)fps_1,fps_2(requiredFLOAT),fps_3(optional, but required ifclip_3is connected - the node throws if you wire a third clip without its FPS)debug(boolean, defaultfalse) - prints each clip's frames and shape to the console
The three outputs mirror the Collector exactly: clips (an IMAGE list), fps (the validated shared FPS), and clip_count. Feed clips into VACE Clip Loop Start and you're off.
Installing it
It's part of comfy-vace-automation, which has no extra pip dependencies:
cd ComfyUI/custom_nodes
git clone https://github.com/EnviralDesign/comfy-vace-automation
Restart ComfyUI, or install via ComfyUI Manager by searching "comfy-vace-automation".
When it bites you
- You wired
clip_3but forgotfps_3. The error is unmissable:fps_3 is required when clip_3 is connected. Clip and FPS are a matched pair here. - Forced FPS inputs. If you leave
fps_1unwired ComfyUI may try to treat it as a widget, and the node will either complain or you'll feed it a bogus default. Wire them properly. - FPS mismatch. The tolerance is tight (1e-6), so a 29.97fps clip next to a 30fps clip will error. Re-encode to match.
Should you use it or the Collector? If you're building anything more than a quick experiment, use VACE Clip Collector - one autogrow input instead of three clip+FPS pairs, and it reads FPS from the video itself so you can't miswire it. This node's real job today is being the small, easy-to-read version for when you already have three frame batches in hand and just want them grouped.
Inputs (7)
| Name | Type | Default | Description |
|---|---|---|---|
| clip_1 | IMAGE | — | |
| clip_2 | IMAGE | — | |
| fps_1 | FLOAT | — | |
| fps_2 | FLOAT | — | |
| debug | BOOLEAN | false | — |
| clip_3opt | IMAGE | — | |
| fps_3opt | FLOAT | — |
Outputs (3)
| Name | Type | Description |
|---|---|---|
| clips | IMAGE | — |
| fps | FLOAT | — |
| clip_count | INT | — |