LightX2V is an advanced lightweight video generation inference framework engineered to deliver efficient, high-performance video synthesis solutions. This unified platform integrates multiple state-of-the-art video generation techniques, supporting diverse generation tasks including text-to-video (T2V) and image-to-video (I2V). X2V represents the transformation of different input modalities (X, such as text or images) into video output (V).
-
November 24, 2025: 🚀 We released 4-step distilled models for HunyuanVideo-1.5! These models enable ultra-fast 4-step inference without CFG requirements, achieving approximately 25x speedup compared to standard 50-step inference. Both base and FP8 quantized versions are now available: Hy1.5-Distill-Models.
-
November 21, 2025: 🚀 We support the HunyuanVideo-1.5 video generation model since Day 0. With the same number of GPUs, LightX2V can achieve a speed improvement of over 2 times and supports deployment on GPUs with lower memory (such as the 24GB RTX 4090). It also supports CFG/Ulysses parallelism, efficient offloading, TeaCache/MagCache technologies, and more. We will soon update more models on our HuggingFace page, including step distillation, VAE distillation, and other related models. Quantized models and lightweight VAE models are now available: Hy1.5-Quantized-Models for quantized inference, and LightTAE for HunyuanVideo-1.5 for fast VAE decoding. Refer to this for usage tutorials, or check out the examples directory for code examples.
🌐 Try it online now! Experience LightX2V without installation: LightX2V Online Service - Free, lightweight, and fast AI digital human video generation platform.
For comprehensive usage instructions, please refer to our documentation: English Docs | 中文文档
pip install -v git+https://github.com/ModelTC/LightX2V.gitgit clone https://github.com/ModelTC/LightX2V.git
cd LightX2V
uv pip install -v . # pip install -v .For attention operators installation, please refer to our documentation: English Docs | 中文文档
# examples/wan/wan_i2v.py
"""
Wan2.2 image-to-video generation example.
This example demonstrates how to use LightX2V with Wan2.2 model for I2V generation.
"""
from lightx2v import LightX2VPipeline
# Initialize pipeline for Wan2.2 I2V task
# For wan2.1, use model_cls="wan2.1"
pipe = LightX2VPipeline(
model_path="/path/to/Wan2.2-I2V-A14B",
model_cls="wan2.2_moe",
task="i2v",
)
# Alternative: create generator from config JSON file
# pipe.create_generator(
# config_json="configs/wan22/wan_moe_i2v.json"
# )
# Enable offloading to significantly reduce VRAM usage with minimal speed impact
# Suitable for RTX 30/40/50 consumer GPUs
pipe.enable_offload(
cpu_offload=True,
offload_granularity="block", # For Wan models, supports both "block" and "phase"
text_encoder_offload=True,
image_encoder_offload=False,
vae_offload=False,
)
# Create generator manually with specified parameters
pipe.create_generator(
attn_mode="sage_attn2",
infer_steps=40,
height=480, # Can be set to 720 for higher resolution
width=832, # Can be set to 1280 for higher resolution
num_frames=81,
guidance_scale=[3.5, 3.5], # For wan2.1, guidance_scale is a scalar (e.g., 5.0)
sample_shift=5.0,
)
# Generation parameters
seed = 42
prompt = "Summer beach vacation style, a white cat wearing sunglasses sits on a surfboard. The fluffy-furred feline gazes directly at the camera with a relaxed expression. Blurred beach scenery forms the background featuring crystal-clear waters, distant green hills, and a blue sky dotted with white clouds. The cat assumes a naturally relaxed posture, as if savoring the sea breeze and warm sunlight. A close-up shot highlights the feline's intricate details and the refreshing atmosphere of the seaside."
negative_prompt = "镜头晃动,色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走"
image_path="/path/to/img_0.jpg"
save_result_path = "/path/to/save_results/output.mp4"
# Generate video
pipe.generate(
seed=seed,
image_path=image_path,
prompt=prompt,
negative_prompt=negative_prompt,
save_result_path=save_result_path,
)💡 More Examples: For more usage examples including quantization, offloading, caching, and other advanced configurations, please refer to the examples directory.
🔔 Follow our HuggingFace page for the latest model releases from our team.
💡 Refer to the Model Structure Documentation to quickly get started with LightX2V
We provide multiple frontend interface deployment options:
- 🎨 Gradio Interface: Clean and user-friendly web interface, perfect for quick experience and prototyping
- 🎯 ComfyUI Interface: Powerful node-based workflow interface, supporting complex video generation tasks
- 🚀 Windows One-Click Deployment: Convenient deployment solution designed for Windows users, featuring automatic environment configuration and intelligent parameter optimization
💡 Recommended Solutions:
- First-time Users: We recommend the Windows one-click deployment solution
- Advanced Users: We recommend the ComfyUI interface for more customization options
- Quick Experience: The Gradio interface provides the most intuitive operation experience
- 🔥 SOTA Inference Speed: Achieve ~20x acceleration via step distillation and system optimization (single GPU)
- ⚡️ Revolutionary 4-Step Distillation: Compress original 40-50 step inference to just 4 steps without CFG requirements
- 🛠️ Advanced Operator Support: Integrated with cutting-edge operators including Sage Attention, Flash Attention, Radial Attention, q8-kernel, sgl-kernel, vllm
- 💡 Breaking Hardware Barriers: Run 14B models for 480P/720P video generation with only 8GB VRAM + 16GB RAM
- 🔧 Intelligent Parameter Offloading: Advanced disk-CPU-GPU three-tier offloading architecture with phase/block-level granular management
- ⚙️ Comprehensive Quantization: Support for
w8a8-int8,w8a8-fp8,w4a4-nvfp4and other quantization strategies
- 📈 Smart Feature Caching: Intelligent caching mechanisms to eliminate redundant computations
- 🔄 Parallel Inference: Multi-GPU parallel processing for enhanced performance
- 📱 Flexible Deployment Options: Support for Gradio, service deployment, ComfyUI and other deployment methods
- 🎛️ Dynamic Resolution Inference: Adaptive resolution adjustment for optimal generation quality
- 🎞️ Video Frame Interpolation: RIFE-based frame interpolation for smooth frame rate enhancement
For detailed performance metrics and comparisons, please refer to our benchmark documentation.
Detailed Service Deployment Guide →
- Model Quantization - Comprehensive guide to quantization strategies
- Feature Caching - Intelligent caching mechanisms
- Attention Mechanisms - State-of-the-art attention operators
- Parameter Offloading - Three-tier storage architecture
- Parallel Inference - Multi-GPU acceleration strategies
- Changing Resolution Inference - U-shaped resolution strategy
- Step Distillation - 4-step inference technology
- Video Frame Interpolation - Base on the RIFE technology
- Low-Resource Deployment - Optimized 8GB VRAM solutions
- Low-Latency Deployment - Ultra-fast inference optimization
- Gradio Deployment - Web interface setup
- Service Deployment - Production API service deployment
- Lora Model Deployment - Flexible Lora deployment
We maintain code quality through automated pre-commit hooks to ensure consistent formatting across the project.
Tip
Setup Instructions:
- Install required dependencies:
pip install ruff pre-commit- Run before committing:
pre-commit run --all-filesWe appreciate your contributions to making LightX2V better!
We extend our gratitude to all the model repositories and research communities that inspired and contributed to the development of LightX2V. This framework builds upon the collective efforts of the open-source community.
If you find LightX2V useful in your research, please consider citing our work:
@misc{lightx2v,
author = {LightX2V Contributors},
title = {LightX2V: Light Video Generation Inference Framework},
year = {2025},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/ModelTC/lightx2v}},
}For questions, suggestions, or support, please feel free to reach out through:
- 🐛 GitHub Issues - Bug reports and feature requests
- 💬 GitHub Discussions - Community discussions and Q&A
