Nodes/H3 Continuum/[Legacy] H3 Continuum Sampler V3.3
ComfyUI Node

[Legacy] H3 Continuum Sampler V3.3

Make a 30-second MiniMax H3 video with one sampler node

By ukr8b3g-cmyk·Created 29 days ago·Updated a day ago· 73
[Legacy] H3 Continuum Sampler V3.3
  • model
  • clip
  • video_vae
  • sampler
  • sigmas
  • first_frame
  • last_frame
  • reference_image_1
  • reference_image_2
  • reference_image_3
  • reference_audio_1
  • reference_audio_vae
  • timeline_video
  • video_latents
  • audio_latents
  • assembly_plan
  • status
sequence_prompt
prompt_modeAuto
chunks3
chunk_seconds5.0
width1344
height768
continuityBalanced — 22 frames
base_seed0
audio_continuitytrue
diagnosticsBasic
reroll_from_chunkAuto
reroll_nonce0
strict_compatibilitytrue
debugfalse
show_previewtrue
run_storageOff
run_name
reference_sizeMatch Output
timeline_video_sizeEfficient - 0.4 MP
project_id

MiniMax H3 is native video and audio, and it's genuinely good - but a single H3 clip tops out around 15 seconds, and each one is a roll of the dice on whether the next clip matches the last. That's the entire problem H3 Continuum Sampler V3.3 exists to solve. It's the flagship node of the H3 Continuum pack: give it one prompt (or a timeline of prompts), tell it how many chunks you want, and it chains 1 to 16 H3 generations together while carrying the raw video and audio latents between them. No decode/re-encode between chunks, no "watch the character melt and reform" jumps.

The key mechanic is latent continuation. Each chunk is sampled with the tail of the previous chunk's raw latent context carried in - continuity defaults to Balanced - 22 frames (22 prior frames of video context plus the matching audio). Because the context stays in latent space, the pack never round-trips through the VAE between chunks, which is where most continuation approaches lose identity, motion, and the room tone. The continuity dropdown also offers Fast - 5 frames when you want speed and Strong - 39 frames (Experimental) when the subject keeps drifting.

What to connect

The node is a drop-in replacement for a normal H3 sampler. From the README's standard connection:

  • model - your H3 MODEL (optionally through SageAttention, Turbo/LoRA, or Spectrum, in that order).
  • clip - MiniMax H3 CLIP/Text Encoder output.
  • video_vae - used only to encode image conditioning; T2VA doesn't touch it, and Continuum never decodes with it.
  • sampler and sigmas - normal KSampler-style outputs.
  • sequence_prompt - one Text (Multiline) node. Set prompt_mode = Auto and it detects Fixed (one prompt for all chunks), List (--- between per-chunk prompts), or Timeline ([0-5s] headers).
  • chunks (3) and chunk_seconds (5.0) - start there. width/height default to 1344×768 and should stay multiples of 32.
  • base_seed - the base that per-chunk seeds are derived from deterministically.

Optional conditioning inputs: first_frame, last_frame (I2VA / FL2VA), and up to three reference_image_1..3 (Ref2VA) - images and frames are mutually exclusive, and bypassed sockets are ignored. reference_audio_1 + reference_audio_vae add a native H3 reference audio track. The timeline_video input is the new V3.3 party trick: connect one continuous Core VIDEO and it slices it per chunk, resizes the slice to timeline_video_size (default Efficient - 0.4 MP), and uses it as chunk-local conditioning. Its audio is deliberately ignored, so keep using reference_audio_1 for sound.

What comes out

Three of the four outputs are lists, which trips everyone up the first time:

  • video_latents and audio_latents - one list entry per chunk. Wire each into a normal ComfyUI Core VAE Decode / VAE Decode Audio; ComfyUI maps the decoder across the list. Decoding is deliberately external so Core updates benefit you without the pack copying H3 VAE code.
  • assembly_plan - feeds H3 Continuum Assemble + Seam, which trims the overlap and fixes seams.
  • status - a plain STRING; connect it to Core Preview as Text when you want the run report.

Install and gotchas

Via ComfyUI Manager, search H3 Continuum and install, or:

cd ComfyUI/custom_nodes
git clone https://github.com/ukr8b3g-cmyk/ComfyUI-H3-Continuum.git

Restart ComfyUI. There are no extra pip dependencies - requirements.txt is just PyTorch and safetensors, both already in ComfyUI. What you do need is a working MiniMax H3 environment (the H3 MODEL/CLIP/VAE loaders, plus weights) and ComfyUI v0.32.0 or later for the current Core VAE fixes. Turbo weights, if you want the 8-step path, come from the LightX2V MiniMax H3 Turbo repo on Hugging Face.

Three things bite people. First, if your output is just a black frame, you probably forgot the Core VAE Decode step - this node never decodes. Second, Run Storage = Save + Auto Resume is worth enabling for anything longer than a test: each completed raw AV chunk is atomically saved, so an interrupted run resumes from disk on the next Queue instead of starting over, and reroll_from_chunk lets you regenerate from a specific chunk. Third, "accelerator markers not detected (informational only)" in the status text is not an error - it's just the pack telling you SageAttention markers weren't observable.

CategoryMiniMax H3/Continuum/Legacy

Inputs (33)

NameTypeDefaultDescription
modelMODEL
clipCLIP
video_vaeVAEUsed only to encode image conditioning. T2VA does not use it; Continuum never decodes with it.
samplerSAMPLER
sigmasSIGMAS
sequence_promptSTRINGConnect one Text (Multiline) for the complete sequence.
prompt_modeCOMBOAutoAuto accepts Fixed, list-separated, and timeline prompt styles.
chunksINT31–16Number of sequential Continuum chunks to generate.
chunk_secondsFLOAT5.04–30Target duration shared by every chunk. 5–15 seconds is the recommended and validated range. Values above 15 seconds are supported, but VRAM use and processing time can increase substantially, especially at high resolution.
widthINT134432–16384Output width. Use a multiple of 32.
heightINT76832–16384Output height. Use a multiple of 32.
continuityCOMBOBalanced — 22 framesAmount of prior video context retained at each chunk boundary.
base_seedINT00–18446744073709550000Base seed used to derive deterministic per-chunk seeds.
audio_continuityBOOLEANtrueOn passes prior audio context into continuation chunks. Turn it off only to isolate or replace generated audio.
diagnosticsCOMBOBasic3 options: Basic, Detailed Report, Off
reroll_from_chunkCOMBOAutoAuto resumes the longest compatible saved prefix. Choosing a chunk reuses earlier chunks and regenerates that chunk and everything after it.
reroll_nonceINT00–4294967295Change only when regenerating an explicit chunk and you want a new variation with otherwise identical settings.
strict_compatibilityBOOLEANtrue
debugBOOLEANfalse
show_previewBOOLEANtrue
run_storageCOMBOOffAtomically save raw AV chunks and resume a compatible saved run.
run_nameSTRINGEnter a stable name for this saved run. Compatible chunks are selected automatically.
reference_sizeCOMBOMatch OutputMatch Output is the practical default; Max Identity preserves more reference detail.
timeline_video_sizeCOMBOEfficient - 0.4 MPEfficient limits each chunk-local reference slice to about 0.4 MP. Match Output uses the output pixel area and may be substantially heavier.
project_idSTRINGOptional. Leave blank to derive a stable ID from this sampler node. Run Name remains the explicit override.
first_frameoptIMAGEOptional. Leave all image inputs disconnected for T2VA.
last_frameoptIMAGE
reference_image_1optIMAGE
reference_image_2optIMAGE
reference_image_3optIMAGE
reference_audio_1optAUDIO
reference_audio_vaeoptVAE
timeline_videooptVIDEOOptional. One continuous Core VIDEO covering every configured chunk. When omitted or bypassed, the node uses the standard conditioning path. Its audio is ignored; use the normal audio inputs for generated audio.

Outputs (4)

NameTypeDescription
video_latentsLATENT
audio_latentsLATENT
assembly_planH3_CONTINUUM_ASSEMBLY_PLAN
statusSTRING