@@ -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