MCPcopy
hub / github.com/hao-ai-lab/FastVideo

github.com/hao-ai-lab/FastVideo @v0.2.0 sqlite

repository ↗ · DeepWiki ↗ · release v0.2.0 ↗
10,147 symbols 40,730 edges 1,143 files 2,789 documented · 27%
README

 | <a href="https://hao-ai-lab.github.io/FastVideo"><b>Documentation</b></a> | <a href="https://hao-ai-lab.github.io/FastVideo/inference/inference_quick_start/"><b> Quick Start</b></a> | <a href="https://github.com/hao-ai-lab/FastVideo/discussions/982"  target="_blank"><b>Weekly Dev Meeting</b></a>  | 🟣💬 <a href="https://join.slack.com/t/fastvideo/shared_invite/zt-3f4lao1uq-u~Ipx6Lt4J27AlD2y~IdLQ" target="_blank"> <b>Slack</b> </a> |  🟣💬 <a href="https://github.com/hao-ai-lab/FastVideo/discussions/1097" target="_blank"> <b> WeChat </b> </a> |

FastVideo is a unified post-training and real-time inference framework for accelerated video generation.

NEWS

More News

Key Features

FastVideo has the following features:

  • End-to-end post-training support for bidirectional and autoregressive models:
  • Support full finetuning and LoRA finetuning for state-of-the-art open video DiTs
  • Data preprocessing pipeline for video, image, and text data
  • Distribution Matching Distillation (DMD2) stepwise distillation.
  • Sparse attention with Video Sparse Attention
  • Sparse distillation to achieve >50x denoising speedup
  • Scalable training with FSDP2, sequence parallelism, and selective activation checkpointing.
  • Causal distillation through Self-Forcing
  • See this page for full list of supported models and recipes.
  • State-of-the-art performance optimizations for inference
  • Sequence Parallelism for distributed inference
  • Multiple state-of-the-art attention backends
  • User-friendly CLI and Python API
  • See this page for full list of supported optimizations.
  • Diverse hardware and OS support
  • Support H100, A100, 4090
  • Support Linux, Windows, MacOS
  • See this page for full list of supported models, hardware assumptions, and optimization compatibility.
  • Realtime video generation & editing
  • Dreamverse: stream and "vibe direct" video in realtime (live demo), deployable on local GPU, a self-hosted B200 server, Docker, or serverless Modal

Getting Started

We recommend using uv to create a clean environment. If you previously used Conda, switching to uv generally gives faster and more stable installs.

# Create and activate a new uv environment
uv venv --python 3.12 --seed
source .venv/bin/activate

# Install FastVideo
uv pip install fastvideo

Please see our docs for more detailed installation instructions.

Sparse Distillation

For our sparse distillation techniques, please see our distillation docs and check out our blog.

See below for recipes and datasets:

Model Sparse Distillation Dataset
FastWan2.1-T2V-1.3B Recipe FastVideo Synthetic Wan2.1 480P
FastWan2.2-TI2V-5B Recipe FastVideo Synthetic Wan2.2 720P

Dreamverse — Realtime Video Generation & Editing

Dreamverse is FastVideo's realtime video generation and editing platform — "vibe directing" a video as it streams. It lives in the monorepo under apps/dreamverse/ and ships its own backend (dreamverse-server) plus a web UI.

Try the live demo, read the blog, or run it yourself. Dreamverse deploys on a local GPU, a self-hosted B200 server over SSH, Docker, or serverless Modal — see the Dreamverse README.

Inference

Generating Your First Video

Here's a minimal example to generate a video using the default settings. Make sure VSA kernels are installed. Create a file called example.py with the following code:

import os
from fastvideo import VideoGenerator

def main():
    os.environ["FASTVIDEO_ATTENTION_BACKEND"] = "VIDEO_SPARSE_ATTN"

    # Create a video generator with a pre-trained model
    generator = VideoGenerator.from_pretrained(
        "FastVideo/FastWan2.1-T2V-1.3B-Diffusers",
        num_gpus=1,  # Adjust based on your hardware
    )

    # Define a prompt for your video
    prompt = "A curious raccoon peers through a vibrant field of yellow sunflowers, its eyes wide with interest."

    # Generate the video
    video = generator.generate_video(
        prompt,
        output_path="my_videos/",  # Controls where videos are saved
        save_video=True
    )

if __name__ == '__main__':
    main()

Run the script with:

python example.py

For a more detailed guide, please see our inference quick start.

More Guides

Awesome work using FastVideo or our research projects

  • SGLang: SGLang's diffusion inference functionality is based on a fork of FastVideo on Sept. 24, 2025.
  • DanceGRPO: A unified framework to adapt Group Relative Policy Optimization (GRPO) to visual generation paradigms. Code based on FastVideo.
  • SRPO: A method to directly align the full diffusion trajectory with fine-grained human preference. Code based on FastVideo.
  • DCM: Dual-expert consistency model for efficient and high-quality video generation. Code based on FastVideo.
  • HY-WorldPlay: An action-conditioned world model model trained using FastVideo framework.
  • Hunyuan Video 1.5: A leading lightweight video generation model, where they proposed SSTA based on Sliding Tile Attention.
  • Kandinsky-5.0: A family of diffusion models for video & image generation, where their NABLA attention includes a Sliding Tile Attention branch.
  • LongCat Video: A foundational video generation model with 13.6B parameters with block-sparse attention similar to Video Sparse Attention.

🤝 Contributing

We welcome all contributions. Please check out our guide here. See details in development roadmap.

Acknowledgement

We learned the design and reused code from the following projects: Wan-Video, ThunderKittens, DMD2, diffusers, xDiT, vLLM, SGLang. We thank MBZUAI, Anyscale, and GMI Cloud for their support throughout this project.

Citation

If you find FastVideo useful, please consider citing our research work:

@article{zhang2025vsa,
  title={Vsa: Faster video diffusion with trainable sparse attention},
  author={Zhang, Peiyuan and Chen, Yongqi and Huang, Haofeng and Lin, Will and Liu, Zhengzhong and Stoica, Ion and Xing, Eric and Zhang, Hao},
  journal={arXiv preprint arXiv:2505.13389},
  year={2025}
}

@article{zhang2025fast,
  title={Fast video generation with sliding tile attention},
  author={Zhang, Peiyuan and Chen, Yongqi and Su, Runlong and Ding, Hangliang and Stoica, Ion and Liu, Zhengzhong and Zhang, Hao},
  journal={arXiv preprint arXiv:2502.04507},
  year={2025}
}

Extension points exported contracts — how you extend this code

Replica (Interface)
(no doc)
apps/dreamverse/web/src/components/MonitorPage.tsx
DefaultOptions (Interface)
(no doc)
ui/src/lib/defaultOptions.ts
Props (Interface)
(no doc)
apps/dreamverse/web/src/components/ChatBar.tsx
WorkloadOption (Interface)
(no doc)
ui/src/lib/jobConfig.ts
SpeechToTextButtonProps (Interface)
(no doc)
apps/dreamverse/web/src/components/SpeechToTextButton.tsx
CreateJobRequest (Interface)
(no doc)
ui/src/lib/api.ts
WorkspaceProps (Interface)
(no doc)
apps/dreamverse/web/src/components/Workspace.tsx
Model (Interface)
(no doc)
ui/src/lib/api.ts

Core symbols most depended-on inside this repo

get
called by 1680
fastvideo/eval/pool.py
to
called by 755
fastvideo/eval/metrics/base.py
get_module
called by 465
fastvideo/pipelines/composed_pipeline_base.py
to
called by 434
fastvideo/models/vaes/common.py
_nvmlGetFunctionPointer
called by 355
fastvideo/third_party/pynvml.py
_nvmlCheckReturn
called by 346
fastvideo/third_party/pynvml.py
to
called by 334
fastvideo/third_party/eval/synchformer/ast.py
load
called by 276
fastvideo/models/loader/component_loader.py

Shape

Method 4,620
Function 3,650
Class 1,719
Route 86
Interface 72

Languages

Python95%
TypeScript5%

Modules by API surface

fastvideo/third_party/pynvml.py543 symbols
fastvideo/models/dits/ltx2.py134 symbols
apps/dreamverse/web/src/app/page.tsx123 symbols
fastvideo/models/audio/ltx2_audio_vae.py117 symbols
fastvideo/models/vaes/ltx2vae.py99 symbols
fastvideo/models/encoders/qwen2_5_vl_custom.py83 symbols
fastvideo/tests/entrypoints/test_openai_api.py75 symbols
fastvideo/tests/api/test_presets.py75 symbols
apps/dreamverse/dreamverse/prompt_enhancer.py73 symbols
fastvideo/utils.py69 symbols
fastvideo/distributed/parallel_state.py63 symbols
fastvideo/models/vaes/wanvae.py62 symbols

Dependencies from manifests, versioned

@carbon/icons-react11.76.0 · 1×
@playwright/test1.59.1 · 1×
@radix-ui/react-accordion1.2.12 · 1×
@radix-ui/react-checkbox1.3.3 · 1×
@radix-ui/react-collapsible1.1.12 · 1×
@radix-ui/react-label2.1.8 · 1×
@radix-ui/react-scroll-area1.2.10 · 1×
@radix-ui/react-separator1.1.8 · 1×
@radix-ui/react-slot1.2.4 · 1×
@sveltejs/adapter-node5.5.4 · 1×
@sveltejs/kit2.57.1 · 1×

For agents

$ claude mcp add FastVideo \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact