We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e18d2c commit 857735fCopy full SHA for 857735f
src/diffusers/pipelines/ltx2/export_utils.py
@@ -134,7 +134,7 @@ def encode_video(
134
number of chunks to use often depends on the tiling config for the video VAE.
135
"""
136
if isinstance(video, list) and isinstance(video[0], PIL.Image.Image):
137
- # Pipeline output_type="latent"
+ # Pipeline output_type="pil"
138
video_frames = [np.array(frame) for frame in video]
139
video = np.stack(video_frames, axis=0)
140
video = torch.from_numpy(video)
0 commit comments