├── .gitignore ├── LICENSE.md ├── README.md ├── V_Express ├── inference.py ├── inference_v2.yaml ├── modules │ ├── __init__.py │ ├── attention.py │ ├── audio_projection.py │ ├── motion_module.py │ ├── mutual_self_attention.py │ ├── resnet.py │ ├── transformer_2d.py │ ├── transformer_3d.py │ ├── unet_2d_blocks.py │ ├── unet_2d_condition.py │ ├── unet_3d.py │ ├── unet_3d_blocks.py │ └── v_kps_guider.py ├── pipelines │ ├── __init__.py │ ├── context.py │ ├── utils.py │ └── v_express_pipeline.py └── scripts │ └── extract_kps_sequence_and_audio.py ├── __init__.py ├── donate.jpg ├── nodes.py ├── requirements.txt ├── web.png ├── web └── js │ ├── previewVideo.js │ ├── uploadAudio.js │ └── uploadVideo.js └── wechat.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/README.md -------------------------------------------------------------------------------- /V_Express/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/inference.py -------------------------------------------------------------------------------- /V_Express/inference_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/inference_v2.yaml -------------------------------------------------------------------------------- /V_Express/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/__init__.py -------------------------------------------------------------------------------- /V_Express/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/attention.py -------------------------------------------------------------------------------- /V_Express/modules/audio_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/audio_projection.py -------------------------------------------------------------------------------- /V_Express/modules/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/motion_module.py -------------------------------------------------------------------------------- /V_Express/modules/mutual_self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/mutual_self_attention.py -------------------------------------------------------------------------------- /V_Express/modules/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/resnet.py -------------------------------------------------------------------------------- /V_Express/modules/transformer_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/transformer_2d.py -------------------------------------------------------------------------------- /V_Express/modules/transformer_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/transformer_3d.py -------------------------------------------------------------------------------- /V_Express/modules/unet_2d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/unet_2d_blocks.py -------------------------------------------------------------------------------- /V_Express/modules/unet_2d_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/unet_2d_condition.py -------------------------------------------------------------------------------- /V_Express/modules/unet_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/unet_3d.py -------------------------------------------------------------------------------- /V_Express/modules/unet_3d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/unet_3d_blocks.py -------------------------------------------------------------------------------- /V_Express/modules/v_kps_guider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/modules/v_kps_guider.py -------------------------------------------------------------------------------- /V_Express/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/pipelines/__init__.py -------------------------------------------------------------------------------- /V_Express/pipelines/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/pipelines/context.py -------------------------------------------------------------------------------- /V_Express/pipelines/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/pipelines/utils.py -------------------------------------------------------------------------------- /V_Express/pipelines/v_express_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/pipelines/v_express_pipeline.py -------------------------------------------------------------------------------- /V_Express/scripts/extract_kps_sequence_and_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/V_Express/scripts/extract_kps_sequence_and_audio.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/__init__.py -------------------------------------------------------------------------------- /donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/donate.jpg -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/requirements.txt -------------------------------------------------------------------------------- /web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/web.png -------------------------------------------------------------------------------- /web/js/previewVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/web/js/previewVideo.js -------------------------------------------------------------------------------- /web/js/uploadAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/web/js/uploadAudio.js -------------------------------------------------------------------------------- /web/js/uploadVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/web/js/uploadVideo.js -------------------------------------------------------------------------------- /wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIFSH/ComfyUI_V-Express/HEAD/wechat.jpg --------------------------------------------------------------------------------