├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── pyproject.toml ├── requirements.txt ├── testframework ├── README.md ├── __init__.py ├── server.py └── web │ └── js │ └── testRunner.js ├── tests ├── README.md ├── audio.json ├── batch4x4.json ├── converted-format-input.json ├── converted-input.json ├── loop.json ├── old-prores.json ├── old-vae-conversion.json └── simple.json ├── video_formats ├── 16bit-png.json ├── 8bit-png.json ├── ProRes.json ├── av1-webm.json ├── ffmpeg-gif.json ├── ffv1-mkv.json ├── gifski.json ├── h264-mp4.json ├── h265-mp4.json ├── nvenc_av1-mp4.json ├── nvenc_h264-mp4.json ├── nvenc_hevc-mp4.json └── webm.json ├── videohelpersuite ├── batched_nodes.py ├── documentation.py ├── image_latent_nodes.py ├── latent_preview.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/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | imageio-ffmpeg 3 | -------------------------------------------------------------------------------- /testframework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/testframework/README.md -------------------------------------------------------------------------------- /testframework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/testframework/__init__.py -------------------------------------------------------------------------------- /testframework/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/testframework/server.py -------------------------------------------------------------------------------- /testframework/web/js/testRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/testframework/web/js/testRunner.js -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/audio.json -------------------------------------------------------------------------------- /tests/batch4x4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/batch4x4.json -------------------------------------------------------------------------------- /tests/converted-format-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/converted-format-input.json -------------------------------------------------------------------------------- /tests/converted-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/converted-input.json -------------------------------------------------------------------------------- /tests/loop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/loop.json -------------------------------------------------------------------------------- /tests/old-prores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/old-prores.json -------------------------------------------------------------------------------- /tests/old-vae-conversion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/old-vae-conversion.json -------------------------------------------------------------------------------- /tests/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/tests/simple.json -------------------------------------------------------------------------------- /video_formats/16bit-png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/16bit-png.json -------------------------------------------------------------------------------- /video_formats/8bit-png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/8bit-png.json -------------------------------------------------------------------------------- /video_formats/ProRes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/ProRes.json -------------------------------------------------------------------------------- /video_formats/av1-webm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/av1-webm.json -------------------------------------------------------------------------------- /video_formats/ffmpeg-gif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/ffmpeg-gif.json -------------------------------------------------------------------------------- /video_formats/ffv1-mkv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/ffv1-mkv.json -------------------------------------------------------------------------------- /video_formats/gifski.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/gifski.json -------------------------------------------------------------------------------- /video_formats/h264-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/h264-mp4.json -------------------------------------------------------------------------------- /video_formats/h265-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/h265-mp4.json -------------------------------------------------------------------------------- /video_formats/nvenc_av1-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/nvenc_av1-mp4.json -------------------------------------------------------------------------------- /video_formats/nvenc_h264-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/nvenc_h264-mp4.json -------------------------------------------------------------------------------- /video_formats/nvenc_hevc-mp4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/nvenc_hevc-mp4.json -------------------------------------------------------------------------------- /video_formats/webm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/video_formats/webm.json -------------------------------------------------------------------------------- /videohelpersuite/batched_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/batched_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/documentation.py -------------------------------------------------------------------------------- /videohelpersuite/image_latent_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/image_latent_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/latent_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/latent_preview.py -------------------------------------------------------------------------------- /videohelpersuite/load_images_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/load_images_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/load_video_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/load_video_nodes.py -------------------------------------------------------------------------------- /videohelpersuite/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/logger.py -------------------------------------------------------------------------------- /videohelpersuite/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/nodes.py -------------------------------------------------------------------------------- /videohelpersuite/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/server.py -------------------------------------------------------------------------------- /videohelpersuite/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/videohelpersuite/utils.py -------------------------------------------------------------------------------- /web/js/VHS.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/web/js/VHS.core.js -------------------------------------------------------------------------------- /web/js/videoinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kosinkadink/ComfyUI-VideoHelperSuite/HEAD/web/js/videoinfo.js --------------------------------------------------------------------------------