mlx-community/LongCat-Video-q8
2
Part of the LongCat-Video — MLX collection.
LongCat-Video-q8 (MLX)
8-bit quantized variant of mlx-community/LongCat-Video-bf16. Same model, same six task variants (T2V / I2V / Continuation / Refinement / Long-Video / Interactive), same cfg_step_lora + refinement_lora files — just with the DiT Linears quantized to 8-bit via mlx.nn.quantize.
The 8-bit variant trades a small disk-savings improvement (vs 4-bit) for near-bf16 quality. If you have the RAM headroom for 30 GB but not 42 GB, q8 is the right pick.
TL;DR
Quantization details
Same skip pattern as q4 — see the q4 card for full notes on why each pattern is excluded (L11 + L42 in the skill-lessons).
The only difference vs q4 is bits=8 in the quantization config block.
Quick start
# 1. Pull weights (~31 GB)
hf download mlx-community/LongCat-Video-q8 --local-dir ./weights
# 2. Set up inference
git clone https://github.com/xocialize/longcat-video-mlx
cd longcat-video-mlx
python3.12 -m venv .venv
.venv/bin/pip install -e ".[parity]"
# 3. Run text-to-video — pass --variant q8
.venv/bin/python scripts/run_t2v.py \
--weights ./weights/.. \
--variant q8 \
--prompt "A cat surfing on a wave at sunset, cinematic, 8k" \
--num-frames 93 \
--out output_t2v.mp4Choosing between bf16, q4, q8
License
MIT — matches the upstream LongCat-Video license.
