├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── calculate.py ├── camera.py ├── categories.py ├── config.json ├── core ├── __init__.py ├── batch_processing.py ├── config.py ├── dvb_image.py ├── err.py ├── framerate.py ├── frameset.py ├── memory.py ├── node_support.py ├── partial_prompt.py ├── statestore.py ├── utility.py └── vector.py ├── cutandjoin.py ├── disable.py ├── enable.py ├── examples ├── a.jpg ├── b.jpg ├── blend-example.json ├── camera-roll-example.json ├── frame-blend.json └── transitions.json ├── generate.py ├── inputfields.py ├── install.py ├── license.txt ├── loaders.py ├── node_list.json ├── prompting.py ├── pyproject.toml ├── requirements.txt ├── shared.py ├── transitions.py ├── uninstall.py ├── utility.py └── wrapping.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | *.cmd 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/__init__.py -------------------------------------------------------------------------------- /calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/calculate.py -------------------------------------------------------------------------------- /camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/camera.py -------------------------------------------------------------------------------- /categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/categories.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/config.json -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/batch_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/batch_processing.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/config.py -------------------------------------------------------------------------------- /core/dvb_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/dvb_image.py -------------------------------------------------------------------------------- /core/err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/err.py -------------------------------------------------------------------------------- /core/framerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/framerate.py -------------------------------------------------------------------------------- /core/frameset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/frameset.py -------------------------------------------------------------------------------- /core/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/memory.py -------------------------------------------------------------------------------- /core/node_support.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /core/partial_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/partial_prompt.py -------------------------------------------------------------------------------- /core/statestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/statestore.py -------------------------------------------------------------------------------- /core/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/utility.py -------------------------------------------------------------------------------- /core/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/core/vector.py -------------------------------------------------------------------------------- /cutandjoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/cutandjoin.py -------------------------------------------------------------------------------- /disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/disable.py -------------------------------------------------------------------------------- /enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/enable.py -------------------------------------------------------------------------------- /examples/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/examples/a.jpg -------------------------------------------------------------------------------- /examples/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/examples/b.jpg -------------------------------------------------------------------------------- /examples/blend-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/examples/blend-example.json -------------------------------------------------------------------------------- /examples/camera-roll-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/examples/camera-roll-example.json -------------------------------------------------------------------------------- /examples/frame-blend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/examples/frame-blend.json -------------------------------------------------------------------------------- /examples/transitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/examples/transitions.json -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/generate.py -------------------------------------------------------------------------------- /inputfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/inputfields.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/install.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/license.txt -------------------------------------------------------------------------------- /loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/loaders.py -------------------------------------------------------------------------------- /node_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/node_list.json -------------------------------------------------------------------------------- /prompting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/prompting.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | imageio 2 | pilgram 3 | scipy 4 | numpy<2.0.0,>=1.18 5 | torchvision 6 | evalidate 7 | -------------------------------------------------------------------------------- /shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/shared.py -------------------------------------------------------------------------------- /transitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/transitions.py -------------------------------------------------------------------------------- /uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/uninstall.py -------------------------------------------------------------------------------- /utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/utility.py -------------------------------------------------------------------------------- /wrapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt-key-project/comfyui-dream-video-batches/HEAD/wrapping.py --------------------------------------------------------------------------------