Split
Decomposes a batch back into individual images or sub-batches.
Split takes a batch input and breaks it apart. Four modes cover different use cases: Individual outputs one image per frame, Chunks divides the batch into N equal sub-batches, Slice extracts a contiguous range of frames, and Filter routes frames by glob pattern matching on their names.
Output pins rebuild dynamically based on the mode and the incoming batch, so the node adapts its shape to the result. This is the inverse of Collect and Image Folder, letting you selectively extract or partition batch contents for per-frame or per-group processing downstream.
Parameters
Section titled “Parameters”Split
Individual: one output per frame. Chunks: N equal sub-batches. Slice: range selection. Filter
Individual
0 = auto (one output per frame, up to 64)
Chunks
Number of sub-batches to split into
Individual
First frame index to output
Slice
0 = first frame. Negative = from end
0 = all from start
Filter
Case-insensitive glob (supports * and ?)
Usage Tips
Section titled “Usage Tips”- Use Individual mode to pull out specific frames for per-image processing.
- Chunks mode is useful for splitting a large batch across parallel export pipelines.
- Use Slice to extract a range of frames by index for partial batch processing.
- Filter mode routes frames by name glob - e.g. hero_* to extract only frames whose names match.