├── README.md ├── assets └── VideoGen-Main.png ├── examples ├── config.json ├── multi_promts.json └── single_gpu.json ├── inference.py ├── requirements.txt └── src ├── tools.py ├── video_crafter.py └── video_infinity ├── __init__.py ├── plugins.py └── wrapper.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/README.md -------------------------------------------------------------------------------- /assets/VideoGen-Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/assets/VideoGen-Main.png -------------------------------------------------------------------------------- /examples/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/examples/config.json -------------------------------------------------------------------------------- /examples/multi_promts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/examples/multi_promts.json -------------------------------------------------------------------------------- /examples/single_gpu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/examples/single_gpu.json -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/inference.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/src/tools.py -------------------------------------------------------------------------------- /src/video_crafter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/src/video_crafter.py -------------------------------------------------------------------------------- /src/video_infinity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/video_infinity/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/src/video_infinity/plugins.py -------------------------------------------------------------------------------- /src/video_infinity/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuanshi9815/Video-Infinity/HEAD/src/video_infinity/wrapper.py --------------------------------------------------------------------------------