Flowing Fidelity to Detail for Efficient High-Resolution Video Generation
March 5, 2025 ยท View on GitHub
FlashVideo: Flowing Fidelity to Detail for Efficient High-Resolution Video Generation
Shilong Zhang, Wenbo Li, Shoufa Chen, Chongjian Ge, Peize Sun,
Yida Zhang, Yi Jiang, Zehuan Yuan, Bingyue Peng, Ping Luo,
HKU, CUHK, ByteDance
๐ค More video examples ๐ can be accessed at the 
โกโก User Prompt to 270p, NFE = 50, Takes ~30s โกโก
โกโก 270p to 1080p , NFE = 4, Takes ~72s โกโก
๐ฅ Update
- [2025.02.10] ๐ฅ ๐ฅ ๐ฅ Inference code and both stage model weights have been released.
๐ฟ Introduction
In this repository, we provide:
- The stage-I weight for 270P video generation.
- The stage-II for enhancing 270P video to 1080P.
- Inference code of both stages.
- Training code and related augmentation. Work in process PR#12
- Loss function
- Dataset and augmentation
- Configuration and training script
- Implementation with diffusers.
- Gradio.
Install
1. Environment Setup
This repository is tested with PyTorch 2.4.0+cu121 and Python 3.11.11. You can install the necessary dependencies using the following command:
pip install -r requirements.txt
2. Preparing the Checkpoints
To get the 3D VAE (identical to CogVideoX), along with Stage-I and Stage-II weights, set them up as follows:
cd FlashVideo
mkdir -p ./checkpoints
huggingface-cli download --local-dir ./checkpoints FoundationVision/FlashVideo
The checkpoints should be organized as shown below:
โโโ 3d-vae.pt
โโโ stage1.pt
โโโ stage2.pt
๐ Text to Video Generation
โ ๏ธ IMPORTANT NOTICE โ ๏ธ : Both stage-I and stage-II are trained with long prompts only. For achieving the best results, include comprehensive and detailed descriptions in your prompts, akin to the example provided in example.txt.
Jupyter Notebook
You can conveniently provide user prompts in our Jupyter notebook. The default configuration for spatial and temporal slices in the VAE Decoder is tailored for an 80G GPU. For GPUs with less memory, one might consider increasing the spatial and temporal slice.
flashvideo/demo.ipynb
Inferring from a Text File Containing Prompts
You can conveniently provide the user prompt in a text file and generate videos with multiple gpus.
bash inf_270_1080p.sh
License
This project is developed based on CogVideoX. Please refer to their original license for usage details.
BibTeX
@article{zhang2025flashvideo,
title={FlashVideo: Flowing Fidelity to Detail for Efficient High-Resolution Video Generation},
author={Zhang, Shilong and Li, Wenbo and Chen, Shoufa and Ge, Chongjian and Sun, Peize and Zhang, Yida and Jiang, Yi and Yuan, Zehuan and Peng, Binyue and Luo, Ping},
journal={arXiv preprint arXiv:2502.05179},
year={2025}
}