MLX-optimized weights for
Lightricks/LTX-2.3 video generation model, converted for Apple Silicon.
Head-to-head comparison on the same machine, same config (576x1024, 121 frames, 5s video):
1from mlx_ltx.pipeline import DistilledPipeline, save_video
2
3pipeline = DistilledPipeline("path/to/mlx-weights")
4video = pipeline(
5 prompt="A golden retriever playing piano in a concert hall",
6 height=576, width=1024, num_frames=121,
7 seed=42,
8)
9save_video(video, "output.mp4", fps=24.0)
1mlx-ltx-convert \
2 --checkpoint /path/to/ltx-2.3-22b-distilled.safetensors \
3 --gemma-root /path/to/gemma-3-12b-it/ \
4 --output-dir ./mlx-weights/
This model conversion follows the
LTX-2 Community License.