Skip to content

Commit 982876d

Browse files
authored
WanMove support (Comfy-Org#11247)
1 parent 338d9ae commit 982876d

File tree

3 files changed

+544
-0
lines changed

3 files changed

+544
-0
lines changed

comfy_api/latest/_io.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -774,6 +774,13 @@ class AudioEncoder(ComfyTypeIO):
774774
class AudioEncoderOutput(ComfyTypeIO):
775775
Type = Any
776776

777+
@comfytype(io_type="TRACKS")
778+
class Tracks(ComfyTypeIO):
779+
class TrackDict(TypedDict):
780+
track_path: torch.Tensor
781+
track_visibility: torch.Tensor
782+
Type = TrackDict
783+
777784
@comfytype(io_type="COMFY_MULTITYPED_V3")
778785
class MultiType:
779786
Type = Any
@@ -1894,6 +1901,7 @@ def as_dict(self) -> dict:
18941901
"SEGS",
18951902
"AnyType",
18961903
"MultiType",
1904+
"Tracks",
18971905
# Dynamic Types
18981906
"MatchType",
18991907
# "DynamicCombo",

0 commit comments

Comments
 (0)