├── .github └── workflows │ └── publish.yml ├── README.md ├── StoryMaker ├── README.md ├── assets │ ├── compare.png │ ├── day1.png │ ├── diverse.png │ └── two.png ├── examples │ ├── cloth1.png │ ├── cloth2.png │ ├── ldh.png │ ├── ldh_mask.png │ ├── results │ │ ├── ldh666_0.jpg │ │ ├── ldh666_1.jpg │ │ ├── ldh666_2.jpg │ │ ├── ldh666_3.jpg │ │ ├── ldh_cloth_0.jpg │ │ ├── ldh_cloth_1.jpg │ │ ├── ldh_cloth_2.jpg │ │ ├── ldh_cloth_3.jpg │ │ ├── ldh_tsy666_0.jpg │ │ ├── ldh_tsy666_1.jpg │ │ ├── ldh_tsy666_2.jpg │ │ └── ldh_tsy666_3.jpg │ ├── tsy.png │ └── tsy_mask.png ├── infer.py ├── ip_adapter │ ├── attention_processor.py │ ├── attention_processor_faceid.py │ ├── ip_adapter.py │ ├── ip_adapter_faceid.py │ ├── resampler.py │ └── utils.py └── pipeline_sdxl_storymaker.py ├── __init__.py ├── nodes.py ├── pyproject.toml ├── requirements.txt └── workflows └── workflow.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/README.md -------------------------------------------------------------------------------- /StoryMaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/README.md -------------------------------------------------------------------------------- /StoryMaker/assets/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/assets/compare.png -------------------------------------------------------------------------------- /StoryMaker/assets/day1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/assets/day1.png -------------------------------------------------------------------------------- /StoryMaker/assets/diverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/assets/diverse.png -------------------------------------------------------------------------------- /StoryMaker/assets/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/assets/two.png -------------------------------------------------------------------------------- /StoryMaker/examples/cloth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/cloth1.png -------------------------------------------------------------------------------- /StoryMaker/examples/cloth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/cloth2.png -------------------------------------------------------------------------------- /StoryMaker/examples/ldh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/ldh.png -------------------------------------------------------------------------------- /StoryMaker/examples/ldh_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/ldh_mask.png -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh666_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh666_0.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh666_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh666_1.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh666_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh666_2.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh666_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh666_3.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_cloth_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_cloth_0.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_cloth_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_cloth_1.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_cloth_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_cloth_2.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_cloth_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_cloth_3.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_tsy666_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_tsy666_0.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_tsy666_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_tsy666_1.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_tsy666_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_tsy666_2.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/results/ldh_tsy666_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/results/ldh_tsy666_3.jpg -------------------------------------------------------------------------------- /StoryMaker/examples/tsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/tsy.png -------------------------------------------------------------------------------- /StoryMaker/examples/tsy_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/examples/tsy_mask.png -------------------------------------------------------------------------------- /StoryMaker/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/infer.py -------------------------------------------------------------------------------- /StoryMaker/ip_adapter/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/ip_adapter/attention_processor.py -------------------------------------------------------------------------------- /StoryMaker/ip_adapter/attention_processor_faceid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/ip_adapter/attention_processor_faceid.py -------------------------------------------------------------------------------- /StoryMaker/ip_adapter/ip_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/ip_adapter/ip_adapter.py -------------------------------------------------------------------------------- /StoryMaker/ip_adapter/ip_adapter_faceid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/ip_adapter/ip_adapter_faceid.py -------------------------------------------------------------------------------- /StoryMaker/ip_adapter/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/ip_adapter/resampler.py -------------------------------------------------------------------------------- /StoryMaker/ip_adapter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/ip_adapter/utils.py -------------------------------------------------------------------------------- /StoryMaker/pipeline_sdxl_storymaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/StoryMaker/pipeline_sdxl_storymaker.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | insightface 2 | opencv-python -------------------------------------------------------------------------------- /workflows/workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanglaoya321/ComfyUI-StoryMaker/HEAD/workflows/workflow.json --------------------------------------------------------------------------------