Compare commits

...

3 Commits

Author SHA1 Message Date
Didier Durand
c40e7a9c22
Merge e8820d0ac8 into 827906c30f 2025-06-10 08:28:50 +08:00
Shiwei Zhang
827906c30f
Update README.md 2025-06-05 10:02:00 +08:00
Didier Durand
e8820d0ac8 Adding env variables for parametrized Gradio login 2025-03-01 05:58:29 +01:00
2 changed files with 6 additions and 1 deletions

View File

@ -36,6 +36,7 @@ In this repository, we present **Wan2.1**, a comprehensive and open suite of vid
## Community Works ## Community Works
If your work has improved **Wan2.1** and you would like more people to see it, please inform us. If your work has improved **Wan2.1** and you would like more people to see it, please inform us.
- [ATI](https://github.com/bytedance/ATI), built on **Wan2.1-I2V-14B**, is a trajectory-based motion-control framework that unifies object, local, and camera movements in video generation. Refer to [their website](https://anytraj.github.io/) for more examples.
- [Phantom](https://github.com/Phantom-video/Phantom) has developed a unified video generation framework for single and multi-subject references based on both **Wan2.1-T2V-1.3B** and **Wan2.1-T2V-14B**. Please refer to [their examples](https://github.com/Phantom-video/Phantom). - [Phantom](https://github.com/Phantom-video/Phantom) has developed a unified video generation framework for single and multi-subject references based on both **Wan2.1-T2V-1.3B** and **Wan2.1-T2V-14B**. Please refer to [their examples](https://github.com/Phantom-video/Phantom).
- [UniAnimate-DiT](https://github.com/ali-vilab/UniAnimate-DiT), based on **Wan2.1-14B-I2V**, has trained a Human image animation model and has open-sourced the inference and training code. Feel free to enjoy it! - [UniAnimate-DiT](https://github.com/ali-vilab/UniAnimate-DiT), based on **Wan2.1-14B-I2V**, has trained a Human image animation model and has open-sourced the inference and training code. Feel free to enjoy it!
- [CFG-Zero](https://github.com/WeichenFan/CFG-Zero-star) enhances **Wan2.1** (covering both T2V and I2V models) from the perspective of CFG. - [CFG-Zero](https://github.com/WeichenFan/CFG-Zero-star) enhances **Wan2.1** (covering both T2V and I2V models) from the perspective of CFG.

View File

@ -205,4 +205,8 @@ if __name__ == '__main__':
print("done", flush=True) print("done", flush=True)
demo = gradio_interface() demo = gradio_interface()
demo.launch(server_name="0.0.0.0", share=False, server_port=7860) if "WAN_USER" in os.environ and "WAN_PWD" in os.environ:
demo.launch(server_name="0.0.0.0", share=False, server_port=7860,
auth=(os.environ["WAN_USER"], os.environ["WAN_PWD"]))
else:
demo.launch(server_name="0.0.0.0", share=False, server_port=7860)