Skip to content

Commit 9ded98f

Browse files
committed
Fixed comments
1 parent e56fad5 commit 9ded98f

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

modules/videoInputsFrame.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ def INPUT_TYPES(cls):
1616
"tooltip": "Frame image to include in video inference inputs.frameImages.",
1717
})
1818
optionalInputs[f"useFrame{i}"] = ("BOOLEAN", {
19-
"tooltip": "Enable to set frame position (first/last). Mutually exclusive with timestamp for this slot.",
19+
"tooltip": "Enable to set frame position (first/last).",
2020
"default": False,
2121
})
2222
optionalInputs[f"frame{i} position"] = (cls.FRAME_POSITIONS, {
2323
"default": "first",
2424
"tooltip": "Frame position: 'first' or 'last'. Only used when 'Use Frame' is enabled.",
2525
})
2626
optionalInputs[f"useTimestamp{i}"] = ("BOOLEAN", {
27-
"tooltip": "Enable to set a timestamp (seconds) within the input video. Mutually exclusive with frame position for this slot.",
27+
"tooltip": "Enable to set a timestamp (seconds) within the input video.",
2828
"default": False,
2929
})
3030
optionalInputs[f"timestamp{i}"] = ("STRING", {
@@ -38,8 +38,9 @@ def INPUT_TYPES(cls):
3838
}
3939

4040
DESCRIPTION = (
41-
"Build inputs.frameImages for video inference: image-only strings, "
42-
"{image, frame: first|last}, or {image, timestamp: seconds}."
41+
"Build inputs.frameImages entries for video inference: "
42+
"{image: base64}, {image: base64, frame: first|last|<int>}, or "
43+
"{image: base64, timestamp: seconds}."
4344
)
4445
FUNCTION = "createFrameInputs"
4546
RETURN_TYPES = ("RUNWAREVIDEOINPUTSFRAMEIMAGES",)

0 commit comments

Comments
 (0)