├── .gitignore ├── README.md ├── __init__.py ├── animate_anyone_nodes.py ├── assets ├── animate_anyone_res.mp4 ├── animate_anyone_test_00003.mp4 ├── animate_anyone_wf.json ├── dance.mp4 ├── show.mp4 └── test_12.png ├── controlnet_sdv.py ├── pipeline_stable_video_diffusion_controlnet_long.py ├── prepare.py ├── requirements.txt ├── run_inference_release.py └── unet_spatio_temporal_condition_controlnet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/__init__.py -------------------------------------------------------------------------------- /animate_anyone_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/animate_anyone_nodes.py -------------------------------------------------------------------------------- /assets/animate_anyone_res.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/assets/animate_anyone_res.mp4 -------------------------------------------------------------------------------- /assets/animate_anyone_test_00003.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/assets/animate_anyone_test_00003.mp4 -------------------------------------------------------------------------------- /assets/animate_anyone_wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/assets/animate_anyone_wf.json -------------------------------------------------------------------------------- /assets/dance.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/assets/dance.mp4 -------------------------------------------------------------------------------- /assets/show.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/assets/show.mp4 -------------------------------------------------------------------------------- /assets/test_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/assets/test_12.png -------------------------------------------------------------------------------- /controlnet_sdv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/controlnet_sdv.py -------------------------------------------------------------------------------- /pipeline_stable_video_diffusion_controlnet_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/pipeline_stable_video_diffusion_controlnet_long.py -------------------------------------------------------------------------------- /prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/prepare.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | diffusers==0.25 3 | numpy 4 | transformers 5 | opencv-python 6 | accelerate -------------------------------------------------------------------------------- /run_inference_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/run_inference_release.py -------------------------------------------------------------------------------- /unet_spatio_temporal_condition_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuroBit/ComfyUI-AnimateAnyone-reproduction/HEAD/unet_spatio_temporal_condition_controlnet.py --------------------------------------------------------------------------------