Skip to main content

Image Batch Extend With Overlap

KJNodes/image
ImageBatchExtendWithOverlap

Helper 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

NameTypeStatusConstraintsDefault
source_images?IMAGErequired--
overlap?INTrequiredmin: 1, max: 4096, step: 113
overlap_side?ENUM
2 options
  • source
  • new_images
required-"source"
overlap_mode?ENUM
3 options
  • cut
  • linear_blend
  • ease_in_out
required-"linear_blend"
new_images?IMAGEoptional--

Outputs

IndexNameTypeIs ListConnection Reference
0source_imagesIMAGENo["{node_id}", 0]
1start_imagesIMAGENo["{node_id}", 1]
2extended_imagesIMAGENo["{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?