├── .gitignore ├── README.md ├── Stand-In.png ├── __init__.py ├── choose_face_only_mode.py ├── cropper.py ├── example ├── face_swap.json └── wanvideo_Stand-In_reference_example.json ├── nodes.py ├── requirements.txt ├── videocombine.py └── videoinput.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/README.md -------------------------------------------------------------------------------- /Stand-In.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/Stand-In.png -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/__init__.py -------------------------------------------------------------------------------- /choose_face_only_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/choose_face_only_mode.py -------------------------------------------------------------------------------- /cropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/cropper.py -------------------------------------------------------------------------------- /example/face_swap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/example/face_swap.json -------------------------------------------------------------------------------- /example/wanvideo_Stand-In_reference_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/example/wanvideo_Stand-In_reference_example.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /videocombine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/videocombine.py -------------------------------------------------------------------------------- /videoinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeChatCV/Stand-In_Preprocessor_ComfyUI/HEAD/videoinput.py --------------------------------------------------------------------------------