Nodes/VELVET VICE — MiniMax H3/VELVET VICE MiniMax H3 — Output Studio
ComfyUI Node

VELVET VICE MiniMax H3 — Output Studio

Where H3 frames and native audio become the actual video file

By Velvet-Vice·Created 10 days ago·Updated 7 days ago· 2
VELVET VICE MiniMax H3 — Output Studio
  • images
  • audio
  • Filenames
frame_rate24
loop_count0
filename_prefixvideo/VELVET_VICE_MINIMAX_H3_I2V_FINAL
encoder_modeAUTO — NVIDIA NVENC / CPU H.264 FALLBACK
nvenc_bitrate_mbps_at_24fps60
cpu_crf15
pix_fmtyuv420p
pingpongfalse
save_metadatafalse
trim_to_audiofalse
save_outputtrue

Everything upstream of VelvetViceMiniMaxH3OutputStudio produces frames in memory. This node is where they stop being a tensor batch and become an actual video file you can play, share, and import somewhere else. It takes the finished frame images and an optional native H3 audio stream, encodes them together, and hands back the standard VHS_FILENAMES result so the rest of the graph knows what was written and where.

It subclasses the author's broader Output Studio from the Velvet Vice suite, re-skinned for H3 with sensible defaults - the default filename_prefix is video/VELVET_VICE_MINIMAX_H3_I2V_FINAL. It's the terminal encode stage of the reference workflow, and it's where the WITH SOUND story ends: wire the Audio Gate's output into the optional audio input and the native H3 soundtrack rides into the container.

The encoding choices that matter

  • images (IMAGE) - the frame batch. frame_rate (default 24), loop_count (0) for looping playback.
  • encoder_mode - the interesting one. AUTO - NVIDIA NVENC / CPU H.264 FALLBACK probes your card, uses NVENC if it's there, and falls back to CPU H.264 if not. The explicit NVIDIA NVENC ONLY and CPU H.264 ONLY modes exist for when you want to force one or the other - mostly for reproducibility or diagnosing an encoder problem.
  • nvenc_bitrate_mbps_at_24fps (60) - NVENC bitrate. At 24fps this is high enough for clean motion; it's the trade-off between file size and quality that video nerds argue about in every community thread.
  • cpu_crf (15) - the CPU fallback's quality target. Lower = better, and 15 is already on the visually-lossless side.
  • pix_fmt - yuv420p, the universal compatibility choice.
  • pingpong - play the clip forward then reversed.
  • save_metadata, trim_to_audio (trim the video to the length of the attached audio), and save_output (default true - you can run it purely as a player/test without writing a file).

Output is Filenames (VHS_FILENAMES), the shared VideoHelperSuite convention that downstream nodes - like this pack's Final Cleanup, which waits on the file and releases render models afterward - use to track the result.

Install and what it needs

The pack brings the node; the encoding needs ffmpeg, which ComfyUI bundles or finds on your PATH:

cd ComfyUI/custom_nodes
git clone https://github.com/Velvet-Vice/velvet-vice-minimax-h3

then restart. If you want NVENC, that's a hardware feature of your NVIDIA card plus an ffmpeg build with NVENC enabled - the AUTO mode will tell you if it's unavailable by falling back.

Where people get tripped up: NVENC-only mode errors on machines where the encoder can't initialize (driver, or a card too old for the codec config), and the fix is either updating the driver or dropping to AUTO/CPU mode rather than fighting it. And if your video comes out with no sound, don't blame this node first - check the gates upstream. This node only muxes what it's given; a muted audio branch means nothing arrives at audio no matter how many times you re-encode.

CategoryVELVET VICE/MiniMax H3

Inputs (13)

NameTypeDefaultDescription
imagesIMAGE
frame_rateFLOAT241–240
loop_countINT00–100
filename_prefixSTRINGvideo/VELVET_VICE_MINIMAX_H3_I2V_FINAL
encoder_modeCOMBOAUTO — NVIDIA NVENC / CPU H.264 FALLBACK3 options: AUTO — NVIDIA NVENC / CPU H.264 FALLBACK, NVIDIA NVENC ONLY, CPU H.264 ONLY
nvenc_bitrate_mbps_at_24fpsINT601–999
cpu_crfINT150–100
pix_fmtCOMBOyuv420p1 options: yuv420p
pingpongBOOLEANfalse
save_metadataBOOLEANfalse
trim_to_audioBOOLEANfalse
save_outputBOOLEANtrue
audiooptAUDIO

Outputs (1)

NameTypeDescription
FilenamesVHS_FILENAMES