├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── animatediff └── models │ ├── attention.py │ ├── motion_module.py │ ├── resnet.py │ ├── sparse_controlnet.py │ ├── unet.py │ └── unet_blocks.py ├── configs ├── ad_unet_config.yaml ├── text_encoder_config.json ├── tokenizer │ ├── config.json │ ├── merges.txt │ ├── preprocessor_config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ ├── tokenizer_config.json │ └── vocab.json ├── tokenizer_config.json └── v1-inference.yaml ├── examples ├── magictime_example.json └── magictime_example.mp4 ├── nodes.py ├── requirements.txt └── utils ├── dataset.py ├── pipeline_magictime.py ├── unet.py ├── unet_blocks.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /animatediff/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/animatediff/models/attention.py -------------------------------------------------------------------------------- /animatediff/models/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/animatediff/models/motion_module.py -------------------------------------------------------------------------------- /animatediff/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/animatediff/models/resnet.py -------------------------------------------------------------------------------- /animatediff/models/sparse_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/animatediff/models/sparse_controlnet.py -------------------------------------------------------------------------------- /animatediff/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/animatediff/models/unet.py -------------------------------------------------------------------------------- /animatediff/models/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/animatediff/models/unet_blocks.py -------------------------------------------------------------------------------- /configs/ad_unet_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/ad_unet_config.yaml -------------------------------------------------------------------------------- /configs/text_encoder_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/text_encoder_config.json -------------------------------------------------------------------------------- /configs/tokenizer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer/config.json -------------------------------------------------------------------------------- /configs/tokenizer/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer/merges.txt -------------------------------------------------------------------------------- /configs/tokenizer/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer/preprocessor_config.json -------------------------------------------------------------------------------- /configs/tokenizer/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer/special_tokens_map.json -------------------------------------------------------------------------------- /configs/tokenizer/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer/tokenizer.json -------------------------------------------------------------------------------- /configs/tokenizer/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer/tokenizer_config.json -------------------------------------------------------------------------------- /configs/tokenizer/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer/vocab.json -------------------------------------------------------------------------------- /configs/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/tokenizer_config.json -------------------------------------------------------------------------------- /configs/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/configs/v1-inference.yaml -------------------------------------------------------------------------------- /examples/magictime_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/examples/magictime_example.json -------------------------------------------------------------------------------- /examples/magictime_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/examples/magictime_example.mp4 -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/pipeline_magictime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/utils/pipeline_magictime.py -------------------------------------------------------------------------------- /utils/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/utils/unet.py -------------------------------------------------------------------------------- /utils/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/utils/unet_blocks.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-MagicTimeWrapper/HEAD/utils/util.py --------------------------------------------------------------------------------