├── .gitattributes ├── .gitignore ├── __init__.py ├── configs ├── controlnet_config.json └── svd_config.json ├── examples ├── framer_example_automated_interpolation_01.json ├── framer_example_end.png ├── framer_example_result.mp4 ├── framer_example_start.png └── framer_manual_trajectories_example_01.json ├── models_diffusers ├── attention.py ├── attention_processor.py ├── controlnet_svd.py ├── sift_match.py ├── transformer_temporal.py ├── unet_3d_blocks.py ├── unet_spatio_temporal_condition.py └── utils.py ├── nodes.py ├── pipeline_stable_video_diffusion_interp_control.py ├── readme.md ├── requirements.txt └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /configs/controlnet_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/configs/controlnet_config.json -------------------------------------------------------------------------------- /configs/svd_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/configs/svd_config.json -------------------------------------------------------------------------------- /examples/framer_example_automated_interpolation_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/examples/framer_example_automated_interpolation_01.json -------------------------------------------------------------------------------- /examples/framer_example_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/examples/framer_example_end.png -------------------------------------------------------------------------------- /examples/framer_example_result.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/examples/framer_example_result.mp4 -------------------------------------------------------------------------------- /examples/framer_example_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/examples/framer_example_start.png -------------------------------------------------------------------------------- /examples/framer_manual_trajectories_example_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/examples/framer_manual_trajectories_example_01.json -------------------------------------------------------------------------------- /models_diffusers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/attention.py -------------------------------------------------------------------------------- /models_diffusers/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/attention_processor.py -------------------------------------------------------------------------------- /models_diffusers/controlnet_svd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/controlnet_svd.py -------------------------------------------------------------------------------- /models_diffusers/sift_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/sift_match.py -------------------------------------------------------------------------------- /models_diffusers/transformer_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/transformer_temporal.py -------------------------------------------------------------------------------- /models_diffusers/unet_3d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/unet_3d_blocks.py -------------------------------------------------------------------------------- /models_diffusers/unet_spatio_temporal_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/unet_spatio_temporal_condition.py -------------------------------------------------------------------------------- /models_diffusers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/models_diffusers/utils.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/nodes.py -------------------------------------------------------------------------------- /pipeline_stable_video_diffusion_interp_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/pipeline_stable_video_diffusion_interp_control.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-FramerWrapper/HEAD/utils.py --------------------------------------------------------------------------------