├── .gitignore ├── LICENSE ├── Makefile ├── README.ja.md ├── README.md ├── __init__.py ├── diffusers_helper ├── bucket_tools.py ├── dit_common.py ├── k_diffusion │ ├── uni_pc_fm.py │ └── wrapper.py ├── memory.py ├── models │ └── hunyuan_video_packed.py ├── pipelines │ └── k_diffusion_hunyuan.py └── utils.py ├── example_workflows ├── Oneframe_2Dstyle_V2.json ├── Oneframe_kisekae_V2.json ├── framepack_F1_ prompt + LoRA.json ├── framepack_F1_2 images.json └── framepack_F1_example.json ├── fp8_optimization.py ├── images ├── basic-apose.png ├── basic-chibi.png └── kisekaeichi-body2img.png ├── log_backup.txt ├── nodes.py ├── nodes_F1.py ├── nodes_one.py ├── nodes_resize.py ├── pyproject.toml ├── requirements.txt ├── transformer_config.json └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/Makefile -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/__init__.py -------------------------------------------------------------------------------- /diffusers_helper/bucket_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/bucket_tools.py -------------------------------------------------------------------------------- /diffusers_helper/dit_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/dit_common.py -------------------------------------------------------------------------------- /diffusers_helper/k_diffusion/uni_pc_fm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/k_diffusion/uni_pc_fm.py -------------------------------------------------------------------------------- /diffusers_helper/k_diffusion/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/k_diffusion/wrapper.py -------------------------------------------------------------------------------- /diffusers_helper/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/memory.py -------------------------------------------------------------------------------- /diffusers_helper/models/hunyuan_video_packed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/models/hunyuan_video_packed.py -------------------------------------------------------------------------------- /diffusers_helper/pipelines/k_diffusion_hunyuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/pipelines/k_diffusion_hunyuan.py -------------------------------------------------------------------------------- /diffusers_helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/diffusers_helper/utils.py -------------------------------------------------------------------------------- /example_workflows/Oneframe_2Dstyle_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/example_workflows/Oneframe_2Dstyle_V2.json -------------------------------------------------------------------------------- /example_workflows/Oneframe_kisekae_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/example_workflows/Oneframe_kisekae_V2.json -------------------------------------------------------------------------------- /example_workflows/framepack_F1_ prompt + LoRA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/example_workflows/framepack_F1_ prompt + LoRA.json -------------------------------------------------------------------------------- /example_workflows/framepack_F1_2 images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/example_workflows/framepack_F1_2 images.json -------------------------------------------------------------------------------- /example_workflows/framepack_F1_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/example_workflows/framepack_F1_example.json -------------------------------------------------------------------------------- /fp8_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/fp8_optimization.py -------------------------------------------------------------------------------- /images/basic-apose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/images/basic-apose.png -------------------------------------------------------------------------------- /images/basic-chibi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/images/basic-chibi.png -------------------------------------------------------------------------------- /images/kisekaeichi-body2img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/images/kisekaeichi-body2img.png -------------------------------------------------------------------------------- /log_backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/log_backup.txt -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/nodes.py -------------------------------------------------------------------------------- /nodes_F1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/nodes_F1.py -------------------------------------------------------------------------------- /nodes_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/nodes_one.py -------------------------------------------------------------------------------- /nodes_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/nodes_resize.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/requirements.txt -------------------------------------------------------------------------------- /transformer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/transformer_config.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tori29umai0123/ComfyUI-FramePackWrapper_PlusOne/HEAD/utils.py --------------------------------------------------------------------------------