bash git clone https://github.com/LayrKits/Sprite-Pipeline.git cd Sprite-Pipeline python3 -m venv .venv source .venv/bin/activate # Windows: .venv\Scripts\activate pip install -r requirements.txt bash macOS brew install ffmpeg Windows winget install Gyan.FFmpeg Ubuntu/Debian sudo apt install ffmpeg bash ffmpeg -version python tools/animation pipeline.py --help Sprite-Pipeline/ ├── Videos/ │ └── To Be Processed/ # drop source .mp4/.mov here ├── work/ │ ├── extracted/<character /<action / # raw frames from ffmpeg │ └── matted/<character /<action / # frames with alpha/white bg removed ├── Final…