├── .gitignore ├── README.md ├── __init__.py ├── demo ├── demo.mp4 ├── demo_workflow.png └── workflow.json ├── install_status.json ├── requirements.txt ├── sync_talk_nodes.py ├── sync_talk_utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/__init__.py -------------------------------------------------------------------------------- /demo/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/demo/demo.mp4 -------------------------------------------------------------------------------- /demo/demo_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/demo/demo_workflow.png -------------------------------------------------------------------------------- /demo/workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/demo/workflow.json -------------------------------------------------------------------------------- /install_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/install_status.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools 2 | wheel 3 | twine -------------------------------------------------------------------------------- /sync_talk_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/sync_talk_nodes.py -------------------------------------------------------------------------------- /sync_talk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/sync_talk_utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryuukeisyou/ComfyUI-SyncTalk/HEAD/utils.py --------------------------------------------------------------------------------