gitextract_ig9mhcve/ ├── .gitignore ├── LICENSE ├── README.md ├── configs/ │ ├── inference/ │ │ └── inference.yaml │ └── prompts/ │ └── animation.yaml ├── demo/ │ ├── animate.py │ ├── animate_dist.py │ ├── gradio_animate.py │ └── gradio_animate_dist.py ├── environment.yaml ├── magicanimate/ │ ├── models/ │ │ ├── appearance_encoder.py │ │ ├── attention.py │ │ ├── controlnet.py │ │ ├── embeddings.py │ │ ├── motion_module.py │ │ ├── mutual_self_attention.py │ │ ├── orig_attention.py │ │ ├── resnet.py │ │ ├── stable_diffusion_controlnet_reference.py │ │ ├── unet.py │ │ ├── unet_3d_blocks.py │ │ └── unet_controlnet.py │ ├── pipelines/ │ │ ├── animation.py │ │ ├── context.py │ │ └── pipeline_animation.py │ └── utils/ │ ├── dist_tools.py │ ├── util.py │ └── videoreader.py ├── requirements.txt └── scripts/ ├── animate.sh └── animate_dist.sh