├── .gitignore ├── README.md ├── __init__.py ├── examples ├── animate_entire_video.json ├── sample output.png └── segment_video.json ├── install.py ├── nodes.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/animate_entire_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/examples/animate_entire_video.json -------------------------------------------------------------------------------- /examples/sample output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/examples/sample output.png -------------------------------------------------------------------------------- /examples/segment_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/examples/segment_video.json -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/install.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miaoshouai/ComfyUI-Video-Segmentation/HEAD/requirements.txt --------------------------------------------------------------------------------