| # Avatar batch preparation config | |
| # Usage: python setup/avatar_creation.py --config setup/avatars_config.yml | |
| # | |
| # Each key is the avatar name (becomes backend/avatars/<name>/). | |
| # Provide exactly one of: video_path, frames_dir, image_path. | |
| sophy: | |
| preparation: true | |
| image_path: frontend/public/Sophy.png # single portrait image | |
| bbox_shift: 5 | |
| num_frames: 50 | |
| harry_1: | |
| preparation: true | |
| video_path: /path/to/harry_talking.mp4 # talking-head video | |
| bbox_shift: 5 | |
| christine: | |
| preparation: false # set true to re-generate | |
| image_path: /path/to/christine.png | |
| bbox_shift: 3 | |
| num_frames: 60 | |