Skip to content

Commit 167df2c

Browse files
committed
fix
1 parent 65cc82d commit 167df2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/pipelines/ltx/pipeline_ltx_image2video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ def __call__(
873873
]
874874
latents = (1 - decode_noise_scale) * latents + decode_noise_scale * noise
875875

876-
video = self.vae.decode(latents, return_dict=False)[0]
876+
video = self.vae.decode(latents, timestep, return_dict=False)[0]
877877
video = self.video_processor.postprocess_video(video, output_type=output_type)
878878

879879
# Offload all models

0 commit comments

Comments
 (0)