BianYx commited on
Commit
cd2940e
·
verified ·
1 Parent(s): d1b5522

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -7
README.md CHANGED
@@ -18,14 +18,14 @@ This repository contains the implementation of the paper "VideoPainter: Any-leng
18
 
19
  Keywords: Video Inpainting, Video Editing, Video Generation
20
 
21
- > [Yuxuan Bian](https://yxbian23.github.io/)<sup>12</sup>, [Zhaoyang Zhang](https://zzyfd.github.io/#/)<sup>1</sup>, [Xuan Ju](https://juxuan27.github.io/)<sup>2</sup>, [Mingdeng Cao](https://openreview.net/profile?id=~Mingdeng_Cao1)<sup>3</sup>, [Liangbin Xie](https://liangbinxie.github.io/)<sup>4</sup>, [Ying Shan](https://www.linkedin.com/in/YingShanProfile/)<sup>1</sup>, [Qiang Xu](https://cure-lab.github.io/)<sup>2✉</sup><br>
22
  > <sup>1</sup>ARC Lab, Tencent PCG <sup>2</sup>The Chinese University of Hong Kong <sup>3</sup>The University of Tokyo <sup>4</sup>University of Macau <sup>‡</sup>Project Lead <sup>✉</sup>Corresponding Author
23
 
24
 
25
 
26
  <p align="center">
27
  <a href="https://yxbian23.github.io/project/video-painter">🌐Project Page</a> |
28
- <a href="https://arxiv.org/abs/xxx">📜Arxiv</a> |
29
  <a href="https://huggingface.co/datasets/TencentARC/VPBench">🗄️Data</a> |
30
  <a href="https://youtu.be/HYzNfsD3A0s">📹Video</a> |
31
  <a href="https://huggingface.co/TencentARC/VideoPainter">🤗Hugging Face Model</a> |
@@ -200,6 +200,14 @@ cd ckpt
200
  git clone https://huggingface.co/THUDM/CogVideoX-5b-I2V
201
  ```
202
 
 
 
 
 
 
 
 
 
203
 
204
  The ckpt structure should be like:
205
 
@@ -423,11 +431,14 @@ bash eval_editing_id_resample.sh
423
  ## 🤝🏼 Cite Us
424
 
425
  ```
426
- @article{bian2025videopainter,
427
- title={VideoPainter: Any-length Video Inpainting and Editing with Plug-and-Play Context Control},
428
- author={Bian, Yuxuan and Zhang, Zhaoyang and Ju, Xuan and Cao, Mingdeng and Xie, Liangbin and Shan, Ying and Xu, Qiang},
429
- journal={arXiv preprint arXiv:xxx},
430
- year={2025}
 
 
 
431
  }
432
  ```
433
 
 
18
 
19
  Keywords: Video Inpainting, Video Editing, Video Generation
20
 
21
+ > [Yuxuan Bian](https://yxbian23.github.io/)<sup>12</sup>, [Zhaoyang Zhang](https://zzyfd.github.io/#/)<sup>1</sup>, [Xuan Ju](https://juxuan27.github.io/)<sup>2</sup>, [Mingdeng Cao](https://openreview.net/profile?id=~Mingdeng_Cao1)<sup>3</sup>, [Liangbin Xie](https://liangbinxie.github.io/)<sup>4</sup>, [Ying Shan](https://www.linkedin.com/in/YingShanProfile/)<sup>1</sup>, [Qiang Xu](https://cure-lab.github.io/)<sup>2✉</sup><br>
22
  > <sup>1</sup>ARC Lab, Tencent PCG <sup>2</sup>The Chinese University of Hong Kong <sup>3</sup>The University of Tokyo <sup>4</sup>University of Macau <sup>‡</sup>Project Lead <sup>✉</sup>Corresponding Author
23
 
24
 
25
 
26
  <p align="center">
27
  <a href="https://yxbian23.github.io/project/video-painter">🌐Project Page</a> |
28
+ <a href="https://arxiv.org/abs/2503.05639">📜Arxiv</a> |
29
  <a href="https://huggingface.co/datasets/TencentARC/VPBench">🗄️Data</a> |
30
  <a href="https://youtu.be/HYzNfsD3A0s">📹Video</a> |
31
  <a href="https://huggingface.co/TencentARC/VideoPainter">🤗Hugging Face Model</a> |
 
200
  git clone https://huggingface.co/THUDM/CogVideoX-5b-I2V
201
  ```
202
 
203
+ [Optional]You need to download [FLUX.1-Fill-dev](https://huggingface.co/black-forest-labs/FLUX.1-Fill-dev/) for first frame inpainting:
204
+ ```
205
+ git lfs install
206
+ cd ckpt
207
+ git clone https://huggingface.co/black-forest-labs/FLUX.1-Fill-dev
208
+ mv ckpt/FLUX.1-Fill-dev ckpt/flux_inp
209
+ ```
210
+
211
 
212
  The ckpt structure should be like:
213
 
 
431
  ## 🤝🏼 Cite Us
432
 
433
  ```
434
+ @misc{bian2025videopainteranylengthvideoinpainting,
435
+ title={VideoPainter: Any-length Video Inpainting and Editing with Plug-and-Play Context Control},
436
+ author={Yuxuan Bian and Zhaoyang Zhang and Xuan Ju and Mingdeng Cao and Liangbin Xie and Ying Shan and Qiang Xu},
437
+ year={2025},
438
+ eprint={2503.05639},
439
+ archivePrefix={arXiv},
440
+ primaryClass={cs.CV},
441
+ url={https://arxiv.org/abs/2503.05639},
442
  }
443
  ```
444