Instructions to use qihoo360/FancyVideo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use qihoo360/FancyVideo with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("qihoo360/FancyVideo", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,34 +1,35 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
language:
|
| 4 |
-
- en
|
| 5 |
-
tags:
|
| 6 |
-
- fancyvideo
|
| 7 |
-
- video-generation
|
| 8 |
-
- text-to-video
|
| 9 |
-
---
|
| 10 |
-
# FancyVideo
|
| 11 |
-
This repository is the official implementation of [FancyVideo](https://360cvgroup.github.io/FancyVideo/).
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
We
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
}
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- fancyvideo
|
| 7 |
+
- video-generation
|
| 8 |
+
- text-to-video
|
| 9 |
+
---
|
| 10 |
+
# FancyVideo
|
| 11 |
+
This repository is the official implementation of [FancyVideo](https://360cvgroup.github.io/FancyVideo/).
|
| 12 |
+
|
| 13 |
+
**[FancyVideo: Towards Dynamic and Consistent Video Generation via Cross-frame Textual Guidance](https://arxiv.org/abs/2408.08189)**
|
| 14 |
+
</br>
|
| 15 |
+
Jiasong Feng*, Ao Ma*, Jing Wang*, Bo Cheng, Xiaodan Liang, Dawei Leng†, Yuhui Yin(*Equal Contribution, ✝Corresponding Author)
|
| 16 |
+
</br>
|
| 17 |
+
|
| 18 |
+
## We Are Hiring
|
| 19 |
+
We are seeking academic interns in the AIGC field. If interested, please send your resume to [maao@360.cn](mailto:maao@360.cn).
|
| 20 |
+
|
| 21 |
+
## BibTeX
|
| 22 |
+
```
|
| 23 |
+
@misc{feng2024fancyvideodynamicconsistentvideo,
|
| 24 |
+
title={FancyVideo: Towards Dynamic and Consistent Video Generation via Cross-frame Textual Guidance},
|
| 25 |
+
author={Jiasong Feng and Ao Ma and Jing Wang and Bo Cheng and Xiaodan Liang and Dawei Leng and Yuhui Yin},
|
| 26 |
+
year={2024},
|
| 27 |
+
eprint={2408.08189},
|
| 28 |
+
archivePrefix={arXiv},
|
| 29 |
+
primaryClass={cs.CV},
|
| 30 |
+
url={https://arxiv.org/abs/2408.08189},
|
| 31 |
+
}
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## License
|
| 35 |
+
This project is licensed under the [Apache License (Version 2.0)](https://github.com/modelscope/modelscope/blob/master/LICENSE).
|