├── .dockerignore ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── assets ├── first_fig.png ├── logo.png └── pipline.png ├── gradio_demo └── human_app.py ├── human_app.py ├── inference.py ├── model ├── attention_processor.py ├── pipline.py └── utills.py ├── object_app.py ├── pretrain_model └── Readme.txt ├── prompts └── example.txt └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/README.md -------------------------------------------------------------------------------- /assets/first_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/assets/first_fig.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/pipline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/assets/pipline.png -------------------------------------------------------------------------------- /gradio_demo/human_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/gradio_demo/human_app.py -------------------------------------------------------------------------------- /human_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/human_app.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/inference.py -------------------------------------------------------------------------------- /model/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/model/attention_processor.py -------------------------------------------------------------------------------- /model/pipline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/model/pipline.py -------------------------------------------------------------------------------- /model/utills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/model/utills.py -------------------------------------------------------------------------------- /object_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/object_app.py -------------------------------------------------------------------------------- /pretrain_model/Readme.txt: -------------------------------------------------------------------------------- 1 | Put pretrained model files in this directory. -------------------------------------------------------------------------------- /prompts/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/prompts/example.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WuTao-CS/VideoMaker/HEAD/requirements.txt --------------------------------------------------------------------------------