MCPcopy Create free account
hub / github.com/MeiGen-AI/InfiniteTalk / __init__

Method __init__

wan/utils/vace_processor.py:93–103  ·  view source on GitHub ↗
(self, downsample, min_area, max_area, min_fps, max_fps,
                 zero_start, seq_len, keep_last, **kwargs)

Source from the content-addressed store, hash-verified

91class VaceVideoProcessor(object):
92
93 def __init__(self, downsample, min_area, max_area, min_fps, max_fps,
94 zero_start, seq_len, keep_last, **kwargs):
95 self.downsample = downsample
96 self.min_area = min_area
97 self.max_area = max_area
98 self.min_fps = min_fps
99 self.max_fps = max_fps
100 self.zero_start = zero_start
101 self.keep_last = keep_last
102 self.seq_len = seq_len
103 assert seq_len >= min_area / (self.downsample[1] * self.downsample[2])
104
105 def set_area(self, area):
106 self.min_area = area

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected