├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── animatediff ├── logger.py ├── model_utils.py ├── motion_module.py ├── nodes.py ├── sampler.py ├── sliding_context_sampling.py ├── sliding_schedule.py └── utils.py ├── loras └── .gitkeep ├── models └── .gitkeep ├── requirements.txt ├── video_formats ├── av1-webm.json ├── h264-mp4.json ├── h265-mp4.json └── webm.json ├── web └── js │ ├── vid_preview.js │ └── vid_upload.js └── workflows ├── cn-2images.json ├── cn-vid2vid.json ├── latent-upscale.json ├── lora.json ├── simple.json └── sliding-window.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | /venv 3 | .vscode 4 | *.ckpt 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/__init__.py -------------------------------------------------------------------------------- /animatediff/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/logger.py -------------------------------------------------------------------------------- /animatediff/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/model_utils.py -------------------------------------------------------------------------------- /animatediff/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/motion_module.py -------------------------------------------------------------------------------- /animatediff/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/nodes.py -------------------------------------------------------------------------------- /animatediff/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/sampler.py -------------------------------------------------------------------------------- /animatediff/sliding_context_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/sliding_context_sampling.py -------------------------------------------------------------------------------- /animatediff/sliding_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/sliding_schedule.py -------------------------------------------------------------------------------- /animatediff/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/animatediff/utils.py -------------------------------------------------------------------------------- /loras/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python -------------------------------------------------------------------------------- /video_formats/av1-webm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/video_formats/av1-webm.json -------------------------------------------------------------------------------- /video_formats/h264-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/video_formats/h264-mp4.json -------------------------------------------------------------------------------- /video_formats/h265-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/video_formats/h265-mp4.json -------------------------------------------------------------------------------- /video_formats/webm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/video_formats/webm.json -------------------------------------------------------------------------------- /web/js/vid_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/web/js/vid_preview.js -------------------------------------------------------------------------------- /web/js/vid_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/web/js/vid_upload.js -------------------------------------------------------------------------------- /workflows/cn-2images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/workflows/cn-2images.json -------------------------------------------------------------------------------- /workflows/cn-vid2vid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/workflows/cn-vid2vid.json -------------------------------------------------------------------------------- /workflows/latent-upscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/workflows/latent-upscale.json -------------------------------------------------------------------------------- /workflows/lora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/workflows/lora.json -------------------------------------------------------------------------------- /workflows/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/workflows/simple.json -------------------------------------------------------------------------------- /workflows/sliding-window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SipherAGI/comfyui-animatediff/HEAD/workflows/sliding-window.json --------------------------------------------------------------------------------