Image Batch Extend With Overlap
KJNodes/image
ImageBatchExtendWithOverlapHelper node for video generation extension First input source and overlap amount to get the starting frames for the extension. Then on another copy of the node provide the newly generated frames and choose how to overlap them.
Example
JSON Example
{
"class_type": "ImageBatchExtendWithOverlap",
"inputs": {
"source_images": [
"node_id",
0
],
"overlap": 13,
"overlap_side": "source",
"overlap_mode": "linear_blend"
}
}This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.
Inputs
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
source_images? | IMAGE | required | - | - |
overlap? | INT | required | min: 1, max: 4096, step: 1 | 13 |
overlap_side? | ENUM2 options
| required | - | "source" |
overlap_mode? | ENUM3 options
| required | - | "linear_blend" |
new_images? | IMAGE | optional | - | - |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | source_images | IMAGE | No | ["{node_id}", 0] |
1 | start_images | IMAGE | No | ["{node_id}", 1] |
2 | extended_images | IMAGE | No | ["{node_id}", 2] |
How to connect to these outputs
To connect another node's input to an output from this node, use the connection reference format:
["node_id", output_index]Where node_id is the ID of this ImageBatchExtendWithOverlap node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
source_images (IMAGE):["5", 0]start_images (IMAGE):["5", 1]extended_images (IMAGE):["5", 2]
Was this page helpful?