├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── example ├── Coherent Sampler Video example.json └── Coherent Sampler Video.json ├── nodes.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/__init__.py -------------------------------------------------------------------------------- /example/Coherent Sampler Video example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/example/Coherent Sampler Video example.json -------------------------------------------------------------------------------- /example/Coherent Sampler Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/example/Coherent Sampler Video.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-CohernetVideoSampler/HEAD/pyproject.toml --------------------------------------------------------------------------------