├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── __init__.py ├── cogvideo_controlnet.py ├── cogvideox_fun └── utils.py ├── configs ├── scheduler_config_2b.json ├── scheduler_config_5b.json ├── transformer_config_2b.json ├── transformer_config_5b.json ├── transformer_config_I2V_5b.json └── vae_config.json ├── context.py ├── custom_cogvideox_transformer_3d.py ├── embeddings.py ├── enhance_a_video ├── __init__.py ├── enhance.py └── globals.py ├── example_workflows ├── cogvideox_1.0_5b_vid2vid_02.json ├── cogvideox_1_0_2b_controlnet_02.json ├── cogvideox_1_0_5b_I2V_02.json ├── cogvideox_1_0_5b_I2V_Tora_02.json ├── cogvideox_1_0_5b_I2V_noise_warp_01.json ├── cogvideox_1_0_5b_T2V_02.json ├── cogvideox_1_0_5b_interpolation_02.json ├── cogvideox_1_0_5b_vid2vid_02.json ├── cogvideox_1_5_5b_I2V_01.json ├── cogvideox_Fun_180_orbit_02.json ├── cogvideox_Fun_I2V_02.json ├── cogvideox_Fun_I2V_Tora.json ├── cogvideox_Fun_pose_02.json ├── cut_and_drag_for_noisewarp_01.json └── noise_warp_example_input_video.mp4 ├── fp8_optimization.py ├── lora_utils.py ├── model_loading.py ├── mz_enable_vae_encode_tiling.py ├── mz_gguf_loader.py ├── nodes.py ├── pipeline_cogvideox.py ├── pyproject.toml ├── readme.md ├── requirements.txt ├── tora ├── traj_module.py └── traj_utils.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /cogvideo_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/cogvideo_controlnet.py -------------------------------------------------------------------------------- /cogvideox_fun/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/cogvideox_fun/utils.py -------------------------------------------------------------------------------- /configs/scheduler_config_2b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/configs/scheduler_config_2b.json -------------------------------------------------------------------------------- /configs/scheduler_config_5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/configs/scheduler_config_5b.json -------------------------------------------------------------------------------- /configs/transformer_config_2b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/configs/transformer_config_2b.json -------------------------------------------------------------------------------- /configs/transformer_config_5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/configs/transformer_config_5b.json -------------------------------------------------------------------------------- /configs/transformer_config_I2V_5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/configs/transformer_config_I2V_5b.json -------------------------------------------------------------------------------- /configs/vae_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/configs/vae_config.json -------------------------------------------------------------------------------- /context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/context.py -------------------------------------------------------------------------------- /custom_cogvideox_transformer_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/custom_cogvideox_transformer_3d.py -------------------------------------------------------------------------------- /embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/embeddings.py -------------------------------------------------------------------------------- /enhance_a_video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /enhance_a_video/enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/enhance_a_video/enhance.py -------------------------------------------------------------------------------- /enhance_a_video/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/enhance_a_video/globals.py -------------------------------------------------------------------------------- /example_workflows/cogvideox_1.0_5b_vid2vid_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1.0_5b_vid2vid_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_0_2b_controlnet_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_0_2b_controlnet_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_0_5b_I2V_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_0_5b_I2V_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_0_5b_I2V_Tora_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_0_5b_I2V_Tora_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_0_5b_I2V_noise_warp_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_0_5b_I2V_noise_warp_01.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_0_5b_T2V_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_0_5b_T2V_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_0_5b_interpolation_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_0_5b_interpolation_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_0_5b_vid2vid_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_0_5b_vid2vid_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_1_5_5b_I2V_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_1_5_5b_I2V_01.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_Fun_180_orbit_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_Fun_180_orbit_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_Fun_I2V_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_Fun_I2V_02.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_Fun_I2V_Tora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_Fun_I2V_Tora.json -------------------------------------------------------------------------------- /example_workflows/cogvideox_Fun_pose_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cogvideox_Fun_pose_02.json -------------------------------------------------------------------------------- /example_workflows/cut_and_drag_for_noisewarp_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/cut_and_drag_for_noisewarp_01.json -------------------------------------------------------------------------------- /example_workflows/noise_warp_example_input_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/example_workflows/noise_warp_example_input_video.mp4 -------------------------------------------------------------------------------- /fp8_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/fp8_optimization.py -------------------------------------------------------------------------------- /lora_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/lora_utils.py -------------------------------------------------------------------------------- /model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/model_loading.py -------------------------------------------------------------------------------- /mz_enable_vae_encode_tiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/mz_enable_vae_encode_tiling.py -------------------------------------------------------------------------------- /mz_gguf_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/mz_gguf_loader.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/nodes.py -------------------------------------------------------------------------------- /pipeline_cogvideox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/pipeline_cogvideox.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /tora/traj_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/tora/traj_module.py -------------------------------------------------------------------------------- /tora/traj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/tora/traj_utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kijai/ComfyUI-CogVideoXWrapper/HEAD/utils.py --------------------------------------------------------------------------------