Files
mlx-video/README.md

9.9 KiB

mlx-video

MLX-Video is the best package for inference and finetuning of Image-Video-Audio generation models on your Mac using MLX.

Installation

Install from source:

Option 1: Install with pip (requires git):

pip install git+https://github.com/Blaizzy/mlx-video.git

Option 2: Install with uv (ultra-fast package manager, optional):

uv pip install git+https://github.com/Blaizzy/mlx-video.git

Supported models:

LTX-2

LTX-2 is a 19B parameter video generation model from Lightricks.

Features

  • Text-to-video (T2V) and Image-to-video (I2V) generation
  • Audio-to-video (A2V) conditioning — generate video from input audio
  • Four pipeline modes: Distilled, Dev, Dev Two-Stage, and Dev Two-Stage HQ
  • Synchronized audio-video generation (experimental)
  • LoRA support (including HuggingFace repos)
  • Prompt enhancement via Gemma
  • 2x spatial upscaling for images and videos
  • Optimized for Apple Silicon using MLX

Usage

Pipelines

mlx-video supports four pipeline types via the --pipeline flag:

Pipeline Description CFG Stages Speed
distilled (default) Fixed sigma schedule, no CFG No 2 (8+3 steps) Fastest
dev Dynamic sigmas, constant CFG Yes 1 (30 steps) Medium
dev-two-stage Dev + LoRA refinement Yes (stage 1) 2 (30+3 steps) Slow
dev-two-stage-hq res_2s sampler + LoRA both stages Yes (stage 1) 2 (15+3 steps) Slow, highest quality

Text-to-Video

# Distilled (default) - fast, two-stage
uv run mlx_video.generate --prompt "Two dogs wearing sunglasses, cinematic, sunset" -n 97 --width 768

# Dev - single-stage with CFG
uv run mlx_video.generate --pipeline dev --prompt "A cinematic scene" --cfg-scale 3.0

# Dev two-stage - dev + LoRA refinement
uv run mlx_video.generate --pipeline dev-two-stage \
    --prompt "Two dogs of the poodle breed wearing sunglasses, close up, cinematic, sunset" \
    -n 145 --width 1024 --height 768 \
    --model-repo prince-canuma/LTX-2-dev \
    --cfg-scale 3.0 --lora-strength 0.8 \
    --enhance-prompt

# Dev two-stage HQ - res_2s sampler, LoRA both stages (highest quality)
uv run mlx_video.generate --pipeline dev-two-stage-hq \
    --prompt "A cinematic scene of ocean waves at golden hour" \
    --model-repo prince-canuma/LTX-2-dev

# HQ with custom LoRA strengths
uv run mlx_video.generate --pipeline dev-two-stage-hq \
    --prompt "A sunset over mountains" \
    --model-repo prince-canuma/LTX-2-dev \
    --lora-strength-stage-1 0.3 --lora-strength-stage-2 0.6
Poodles demo

Image-to-Video

# Distilled I2V
uv run mlx_video.generate --prompt "A person dancing" --image photo.jpg

# Dev I2V
uv run mlx_video.generate --pipeline dev --prompt "Waves crashing" --image beach.png --cfg-scale 3.5

Audio-to-Video (A2V)

Generate video conditioned on an input audio file. Works with all four pipelines. The audio is encoded to latent space and frozen during denoising — the transformer's cross-attention reads the audio signal to guide video generation.

# A2V - distilled (default, fastest)
uv run mlx_video.generate --audio-file music.wav --prompt "A band playing music"

# A2V - dev (single-stage with CFG)
uv run mlx_video.generate --pipeline dev --audio-file ocean.wav --prompt "Ocean waves"

# A2V - dev-two-stage (dev + LoRA refinement)
uv run mlx_video.generate --pipeline dev-two-stage --audio-file music.wav \
    --prompt "A band playing music" --model-repo prince-canuma/LTX-2-dev

# A2V - dev-two-stage-hq (highest quality)
uv run mlx_video.generate --pipeline dev-two-stage-hq --audio-file music.wav \
    --prompt "A band playing music" --model-repo prince-canuma/LTX-2-dev

# A2V + I2V (audio + image conditioning)
uv run mlx_video.generate --audio-file rain.wav --image forest.jpg --prompt "Rain in forest"

# A2V with custom start time
uv run mlx_video.generate --audio-file song.mp3 --audio-start-time 30.0 --prompt "Concert"

Note: --audio-file (A2V) and --audio (generate audio) are mutually exclusive. Supported formats: WAV, FLAC, MP3, OGG, and video files with audio tracks.

Audio-Video Generation (experimental)

Generate synchronized audio alongside video from scratch:

uv run mlx_video.generate --prompt "Ocean waves crashing" --audio
uv run mlx_video.generate --pipeline dev --prompt "A jazz band playing" --audio --enhance-prompt

# With full guidance (STG + modality_scale, matches PyTorch defaults)
uv run mlx_video.generate --pipeline dev --prompt "Ocean waves crashing" --audio \
    --stg-scale 1.0 --stg-blocks 29 --modality-scale 3.0

LoRA

LoRA weights can be loaded from a file, directory, or HuggingFace repo:

# From HuggingFace repo
uv run mlx_video.generate --pipeline dev-two-stage \
    --prompt "Camera dolly out of a forest" \
    --lora-path Lightricks/LTX-2-19b-LoRA-Camera-Control-Dolly-Out \
    --lora-strength 1.0

# From local file
uv run mlx_video.generate --pipeline dev-two-stage \
    --prompt "A scene" \
    --lora-path ./my-lora/weights.safetensors

# From local directory (auto-detects .safetensors file)
uv run mlx_video.generate --pipeline dev-two-stage \
    --prompt "A scene" \
    --lora-path ./LTX-2-distilled/lora

Upscaling

# Upscale an image 2x
uv run mlx_video.upscale --input photo.png --output upscaled.png

# Upscale a video 2x
uv run mlx_video.upscale --input video.mp4 --output upscaled.mp4

# Upscale with refinement (higher quality, requires text prompt)
uv run mlx_video.upscale --input video.mp4 --output upscaled.mp4 --refine --prompt "A cinematic scene"

CLI Options

Option Default Description
--prompt, -p (required) Text description of the video
--pipeline distilled Pipeline type: distilled, dev, dev-two-stage, or dev-two-stage-hq
--height, -H 512 Output height (divisible by 64 for two-stage, 32 for dev)
--width, -W 512 Output width (divisible by 64 for two-stage, 32 for dev)
--num-frames, -n 33 Number of frames (must be 1 + 8*k)
--seed, -s 42 Random seed for reproducibility
--fps 24 Frames per second
--output-path, -o output.mp4 Output video path
--model-repo Lightricks/LTX-2 HuggingFace model repository
--text-encoder-repo None Separate text encoder repo (if not in model repo)
--save-frames false Save individual frames as images
--enhance-prompt false Enhance prompt using Gemma
--image, -i None Conditioning image for I2V
--image-strength 1.0 Conditioning strength for I2V
--audio, -a false Enable synchronized audio generation
--audio-file None Path to audio file for A2V conditioning
--audio-start-time 0.0 Start time in seconds for audio file
--tiling auto VAE tiling mode: auto, none, aggressive, conservative
--stream false Stream frames as they decode

Dev/Dev-Two-Stage options:

Option Default Description
--steps 30 Number of denoising steps
--cfg-scale 3.0 CFG guidance scale
--cfg-rescale 0.7 CFG rescale factor (reduces over-saturation)
--negative-prompt (default) Negative prompt for CFG
--apg false Use Adaptive Projected Guidance (more stable for I2V)
--stg-scale 0.0 STG scale (PyTorch default: 1.0, requires --audio)
--stg-blocks None Transformer blocks for STG ([29] for LTX-2, [28] for LTX-2.3)
--modality-scale 1.0 Cross-modal guidance scale (PyTorch default: 3.0, requires --audio)

Dev-Two-Stage LoRA options:

Option Default Description
--lora-path auto-detect Path to LoRA file, directory, or HuggingFace repo
--lora-strength 1.0 LoRA merge strength

Dev-Two-Stage HQ options:

Option Default Description
--lora-strength-stage-1 0.25 LoRA strength for stage 1
--lora-strength-stage-2 0.5 LoRA strength for stage 2

HQ defaults: 15 steps (vs 30), cfg-rescale 0.45 (vs 0.7), STG disabled. Uses the res_2s second-order sampler (2 model evals per step) for better quality at the same compute budget.

How It Works

Distilled Pipeline (default)

  1. Stage 1: Generate at half resolution with 8 denoising steps (fixed sigmas)
  2. Upsample: 2x spatial upsampling via LatentUpsampler
  3. Stage 2: Refine at full resolution with 3 denoising steps
  4. Decode: VAE decoder converts latents to RGB video

Dev Pipeline

  1. Generate: Full resolution with configurable steps and constant CFG
  2. Decode: VAE decoder converts latents to RGB video

Dev Two-Stage Pipeline

  1. Stage 1: Dev denoising at half resolution with CFG
  2. Upsample: 2x spatial upsampling via LatentUpsampler
  3. Stage 2: Distilled refinement at full resolution with LoRA weights (3 steps, no CFG)
  4. Decode: VAE decoder converts latents to RGB video

Dev Two-Stage HQ Pipeline

  1. Stage 1: res_2s denoising at half resolution with CFG + LoRA@0.25 (15 steps, 2 evals/step)
  2. Upsample: 2x spatial upsampling via LatentUpsampler
  3. Stage 2: res_2s refinement at full resolution with LoRA@0.5 (3 steps, no CFG)
  4. Decode: VAE decoder converts latents to RGB video

The res_2s sampler uses an exponential Rosenbrock-type Runge-Kutta integrator with SDE noise injection, producing higher quality results than Euler at the same compute budget (~30 total model evaluations).

Requirements

  • macOS with Apple Silicon
  • Python >= 3.11
  • MLX >= 0.22.0

Model Specifications

  • Transformer: 48 layers, 32 attention heads, 128 dim per head (19B parameters)
  • Latent channels: 128
  • Text encoder: Gemma 3 with 3840-dim output
  • Audio: Synchronized audio-video with separate audio VAE and vocoder

License

MIT