Interface VideoControlNetParams

Video ControlNet parameters for LTX-2 v2v workflows. The control input is provided via referenceVideo in VideoProjectParams.

interface VideoControlNetParams {
    name: {};
    strength?: number;
}

Properties

Properties

name: {}

ControlNet type specifying which control signal to extract from the reference video.

  • 'canny': Edge detection-based control
  • 'pose': Body pose detection (supports optional referenceImage for appearance)
  • 'depth': Depth estimation
  • 'detailer': Quality enhancement
strength?: number

Control strength. Higher values follow the control signal more strictly. Range: 0.0-1.0, default 0.85. For canny/depth: controls how strongly the preprocessor output (edges/depth maps) is injected into the generation. For pose: controls pose adherence. For detailer: controls appearance preservation.