ComfyUI Node
Load Video π
Loads a video as a BHWC frame batch plus its audio, trimmed to an optional start/end window selected on the preview timeline, with frame count, fps, size, and duration outputs ready for downstream wiring, plus a lazy core VIDEO output for nodes that consume whole videos. every_nth thins the batch and max_frames caps it, so long clips load without filling memory.
Load Video π
- frames
- audio
- frame_count
- fps
- width
- height
- duration
- video
βvideoβΎβΊ
βstart_seconds0.00βΊ
βend_seconds0.00βΊ
βcustom_width0βΊ
βcustom_height0βΊ
βevery_nth1βΊ
βmax_frames0βΊ
Categoryπ AusBoss/Video
Inputs (7)
| Name | Type | Default | Description |
|---|---|---|---|
| video | COMBO | Video in ComfyUI's input folder; use the upload button to add one. | |
| start_seconds | FLOAT | 0.000β86400 | Skip everything before this time. Drag the preview's IN handle or type an exact value below the player. |
| end_seconds | FLOAT | 0.000β86400 | Stop at this time; 0 plays to the end. Drag the preview's OUT handle or type an exact value below the player. |
| custom_width | INT | 00β16384 | 0 keeps the source width; set one side only to preserve aspect. |
| custom_height | INT | 00β16384 | 0 keeps the source height; set one side only to preserve aspect. |
| every_nthopt | INT | 11β512 | Keep one frame in this many β 2 halves the frame count. The fps output divides to match, so the clip still plays at real speed downstream. |
| max_framesopt | INT | 00β100000 | Stop after this many kept frames; 0 loads the whole trim window. Caps memory on long clips β the decode ends early instead of loading and discarding. |
Outputs (8)
| Name | Type | Description |
|---|---|---|
| frames | IMAGE | Trimmed BHWC frame batch. |
| audio | AUDIO | Audio for the same trim window; silent when the video has no audio track. |
| frame_count | INT | Number of frames returned. |
| fps | FLOAT | Frames per second of the returned batch: the source rate divided by every_nth. |
| width | INT | Frame width after any custom sizing. |
| height | INT | Frame height after any custom sizing. |
| duration | FLOAT | Duration in seconds of the returned frames. |
| video | VIDEO | Core VIDEO for the same trim window at the source size; frames decode only when a consumer asks for them. None on ComfyUI cores without the comfy_api VIDEO type (present on every version this pack supports). |