├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── pyproject.toml ├── requirements.txt ├── video_formats ├── 16bit-png.json ├── 8bit-png.json ├── ProRes.json ├── av1-webm.json ├── ffmpeg-gif.json ├── gifski.json ├── h264-mp4.json ├── h265-mp4.json ├── nvenc_h264-mp4.json ├── nvenc_hevc-mp4.json └── webm.json ├── videohelpersuite ├── batched_nodes.py ├── documentation.py ├── image_latent_nodes.py ├── load_images_nodes.py ├── load_video_nodes.py ├── logger.py ├── nodes.py ├── server.py └── utils.py └── web └── js ├── VHS.core.js └── videoinfo.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | imageio-ffmpeg 3 | -------------------------------------------------------------------------------- /video_formats/16bit-png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/16bit-png.json -------------------------------------------------------------------------------- /video_formats/8bit-png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/8bit-png.json -------------------------------------------------------------------------------- /video_formats/ProRes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/ProRes.json -------------------------------------------------------------------------------- /video_formats/av1-webm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/av1-webm.json -------------------------------------------------------------------------------- /video_formats/ffmpeg-gif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/ffmpeg-gif.json -------------------------------------------------------------------------------- /video_formats/gifski.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/gifski.json -------------------------------------------------------------------------------- /video_formats/h264-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/h264-mp4.json -------------------------------------------------------------------------------- /video_formats/h265-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/h265-mp4.json -------------------------------------------------------------------------------- /video_formats/nvenc_h264-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/nvenc_h264-mp4.json -------------------------------------------------------------------------------- /video_formats/nvenc_hevc-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/nvenc_hevc-mp4.json -------------------------------------------------------------------------------- /video_formats/webm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/video_formats/webm.json -------------------------------------------------------------------------------- /videohelpersuite/batched_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/batched_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/documentation.py -------------------------------------------------------------------------------- /videohelpersuite/image_latent_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/image_latent_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/load_images_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/load_images_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/load_video_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/load_video_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/logger.py -------------------------------------------------------------------------------- /videohelpersuite/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/nodes.py -------------------------------------------------------------------------------- /videohelpersuite/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/server.py -------------------------------------------------------------------------------- /videohelpersuite/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/utils.py -------------------------------------------------------------------------------- /web/js/VHS.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/web/js/VHS.core.js -------------------------------------------------------------------------------- /web/js/videoinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-VideoHelperSuite/HEAD/web/js/videoinfo.js --------------------------------------------------------------------------------