(cls)
| 916 | class 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( |
nothing calls this directly
no outgoing calls
no test coverage detected