├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── asset ├── image1.png └── image2.png ├── nodes ├── MergeVideo.py ├── SaveVideo.py ├── VideoUpload.py └── upscaleNode.py ├── requirements.txt ├── web └── VideoBasic.js └── workflow └── video_upscale_example.json /.gitignore: -------------------------------------------------------------------------------- 1 | dev_notes 2 | pushgit.bat 3 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/__init__.py -------------------------------------------------------------------------------- /asset/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/asset/image1.png -------------------------------------------------------------------------------- /asset/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/asset/image2.png -------------------------------------------------------------------------------- /nodes/MergeVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/nodes/MergeVideo.py -------------------------------------------------------------------------------- /nodes/SaveVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/nodes/SaveVideo.py -------------------------------------------------------------------------------- /nodes/VideoUpload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/nodes/VideoUpload.py -------------------------------------------------------------------------------- /nodes/upscaleNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/nodes/upscaleNode.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | 3 | -------------------------------------------------------------------------------- /web/VideoBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/web/VideoBasic.js -------------------------------------------------------------------------------- /workflow/video_upscale_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-VideoBasic/HEAD/workflow/video_upscale_example.json --------------------------------------------------------------------------------