├── FramePainter_node.py ├── LICENSE ├── README.md ├── __init__.py ├── example.png ├── examples ├── 635499.jpg ├── 752538.jpg ├── __init__.py └── anime1.png ├── intro_teaser.png ├── modules ├── attention_processors.py ├── pipelines │ └── pipeline_framepainter.py ├── sparse_control_encoder.py ├── transformer_temporal.py ├── unet_spatio_temporal_condition_edit.py └── utils │ ├── __init__.py │ ├── attention_utils.py │ └── scheduling_euler_discrete_karras_fix.py ├── node_utils.py ├── pyproject.toml ├── requirements.txt └── svd_repo ├── feature_extractor └── preprocessor_config.json ├── model_index.json ├── scheduler └── scheduler_config.json ├── unet └── config.json └── vae └── config.json /FramePainter_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/FramePainter_node.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/__init__.py -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/example.png -------------------------------------------------------------------------------- /examples/635499.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/examples/635499.jpg -------------------------------------------------------------------------------- /examples/752538.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/examples/752538.jpg -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/anime1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/examples/anime1.png -------------------------------------------------------------------------------- /intro_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/intro_teaser.png -------------------------------------------------------------------------------- /modules/attention_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/modules/attention_processors.py -------------------------------------------------------------------------------- /modules/pipelines/pipeline_framepainter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/modules/pipelines/pipeline_framepainter.py -------------------------------------------------------------------------------- /modules/sparse_control_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/modules/sparse_control_encoder.py -------------------------------------------------------------------------------- /modules/transformer_temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/modules/transformer_temporal.py -------------------------------------------------------------------------------- /modules/unet_spatio_temporal_condition_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/modules/unet_spatio_temporal_condition_edit.py -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/utils/attention_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/modules/utils/attention_utils.py -------------------------------------------------------------------------------- /modules/utils/scheduling_euler_discrete_karras_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/modules/utils/scheduling_euler_discrete_karras_fix.py -------------------------------------------------------------------------------- /node_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/node_utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/requirements.txt -------------------------------------------------------------------------------- /svd_repo/feature_extractor/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/svd_repo/feature_extractor/preprocessor_config.json -------------------------------------------------------------------------------- /svd_repo/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/svd_repo/model_index.json -------------------------------------------------------------------------------- /svd_repo/scheduler/scheduler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/svd_repo/scheduler/scheduler_config.json -------------------------------------------------------------------------------- /svd_repo/unet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/svd_repo/unet/config.json -------------------------------------------------------------------------------- /svd_repo/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_FramePainter/HEAD/svd_repo/vae/config.json --------------------------------------------------------------------------------