Skip to main content

WanCameraEmbedding

camera
WanCameraEmbedding

Example

JSON Example
{
  "class_type": "WanCameraEmbedding",
  "inputs": {
    "camera_pose": "Static",
    "width": 832,
    "height": 480,
    "length": 81
  }
}

This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.

Inputs

NameTypeStatusConstraintsDefault
camera_poseCOMBOrequired-"Static"
widthINTrequiredmin: 16, max: 16384, step: 16832
heightINTrequiredmin: 16, max: 16384, step: 16480
lengthINTrequiredmin: 1, max: 16384, step: 481
speedFLOAToptionalmin: 0, max: 10, step: 0.11
fxFLOAToptionalmin: 0, max: 1, step: 1e-90.5
fyFLOAToptionalmin: 0, max: 1, step: 1e-90.5
cxFLOAToptionalmin: 0, max: 1, step: 0.010.5
cyFLOAToptionalmin: 0, max: 1, step: 0.010.5

Outputs

IndexNameTypeIs ListConnection Reference
0camera_embeddingWAN_CAMERA_EMBEDDINGNo["{node_id}", 0]
1widthINTNo["{node_id}", 1]
2heightINTNo["{node_id}", 2]
3lengthINTNo["{node_id}", 3]
How to connect to these outputs

To connect another node's input to an output from this node, use the connection reference format:

["node_id", output_index]

Where node_id is the ID of this WanCameraEmbedding node in your workflow, and output_index is the index from the table above.

Example

If this node has ID "5" in your workflow:

  • camera_embedding (WAN_CAMERA_EMBEDDING): ["5", 0]
  • width (INT): ["5", 1]
  • height (INT): ["5", 2]
Was this page helpful?