Skip to content

Commit 857735f

Browse files
committed
Fix comment
1 parent 2e18d2c commit 857735f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/pipelines/ltx2/export_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def encode_video(
134134
number of chunks to use often depends on the tiling config for the video VAE.
135135
"""
136136
if isinstance(video, list) and isinstance(video[0], PIL.Image.Image):
137-
# Pipeline output_type="latent"
137+
# Pipeline output_type="pil"
138138
video_frames = [np.array(frame) for frame in video]
139139
video = np.stack(video_frames, axis=0)
140140
video = torch.from_numpy(video)

0 commit comments

Comments
 (0)