MCPcopy Create free account
hub / github.com/Lightricks/ComfyUI-LTXVideo / define_schema

Method define_schema

easy_samplers.py:918–938  ·  view source on GitHub ↗
(cls)

Source from the content-addressed store, hash-verified

916class LTXVNormalizingSampler(io.ComfyNode):
917 @classmethod
918 def define_schema(cls):
919 return io.Schema(
920 node_id="LTXVNormalizingSampler",
921 category="utility",
922 inputs=[
923 io.Noise.Input("noise"),
924 io.Guider.Input("guider"),
925 io.Sampler.Input("sampler"),
926 io.Sigmas.Input("sigmas"),
927 io.Latent.Input("latent_image"),
928 io.String.Input(
929 "video_normalization_factors", default="1,1,1,1,1,1,1,1"
930 ),
931 io.String.Input(
932 "audio_normalization_factors", default="1,1,0.25,1,1,0.25,1,1"
933 ),
934 ],
935 outputs=[
936 io.Latent.Output(display_name="denoised_output"),
937 ],
938 )
939
940 @classmethod
941 def execute(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected