Appearance
Video Runtime
This page covers the native video-generation path exposed through mere.run video.
Public surface
mere.run video generatemere.run video export-latents
Model family
video-ltx-av
Typical workflows
Generate video
bash
swift run mere.run video generate \
"a cinematic drone flythrough over snowy mountains" \
--variant unified-av \
--model-root ~/Library/Application\ Support/MereRun/models/video-ltx-av \
--output ./clip.mp4Export latents
bash
swift run mere.run video export-latents \
--prompt "storm clouds over the ocean" \
--output ./latents.npzRuntime entrypoints
CLI
Sources/MereRunCLI/Commands/VideoGenerateCommand.swiftSources/MereRunCLI/Commands/VideoExportLatentsCommand.swift
Runtime
Sources/MereRunCore/LTX/LTXDistilledLatentGenerator.swift
Important note on code shape
The LTX runtime is still the largest major runtime file in the repo. It is not an architecture mess anymore, but it still contains more low-level video-model logic than the other family entrypoints.
The best reading order is:
- public generation types and
LTXDistilledLatentGenerator - request normalization and generation flow
- denoise and latent-conditioning helpers
- decoding and media assembly code
- lower-level model definitions
If you are new to the repo, use Architecture Reading Map before diving directly into the LTX implementation.