gitextract_36et0ept/ ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── app.py ├── foleycrafter/ │ ├── data/ │ │ ├── __init__.py │ │ ├── dataset.py │ │ └── video_transforms.py │ ├── models/ │ │ ├── adapters/ │ │ │ ├── attention_processor.py │ │ │ ├── ip_adapter.py │ │ │ ├── resampler.py │ │ │ ├── transformer.py │ │ │ └── utils.py │ │ ├── auffusion/ │ │ │ ├── attention.py │ │ │ ├── attention_processor.py │ │ │ ├── dual_transformer_2d.py │ │ │ ├── loaders/ │ │ │ │ ├── ip_adapter.py │ │ │ │ └── unet.py │ │ │ ├── resnet.py │ │ │ ├── transformer_2d.py │ │ │ └── unet_2d_blocks.py │ │ ├── auffusion_unet.py │ │ ├── onset/ │ │ │ ├── __init__.py │ │ │ ├── r2plus1d_18.py │ │ │ ├── resnet.py │ │ │ ├── torch_utils.py │ │ │ └── video_onset_net.py │ │ └── time_detector/ │ │ ├── model.py │ │ └── resnet.py │ ├── pipelines/ │ │ ├── auffusion_pipeline.py │ │ └── pipeline_controlnet.py │ └── utils/ │ ├── converter.py │ ├── spec_to_mel.py │ └── util.py ├── inference.py ├── pyproject.toml └── requirements/ └── environment.yaml