We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 338d9ae commit 982876dCopy full SHA for 982876d
3 files changed
comfy_api/latest/_io.py
@@ -774,6 +774,13 @@ class AudioEncoder(ComfyTypeIO):
774
class AudioEncoderOutput(ComfyTypeIO):
775
Type = Any
776
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
+
784
@comfytype(io_type="COMFY_MULTITYPED_V3")
785
class MultiType:
786
@@ -1894,6 +1901,7 @@ def as_dict(self) -> dict:
1894
1901
"SEGS",
1895
1902
"AnyType",
1896
1903
"MultiType",
1904
+ "Tracks",
1897
1905
# Dynamic Types
1898
1906
"MatchType",
1899
1907
# "DynamicCombo",
0 commit comments