NCH Logo

201.001

Instrumental Music Collection


 Starlane  GitHub

## Description A collection of scripts to encode and tag my personal instrumental music collection. ## Requirements System dependencies: - `make` - `rsync` - `ffmpeg` - `metaflac` This project is managed through a `conda` environment. To install the required dependencies, run the following: ```bash conda env create -f environment.yml ``` ## Running First, activate the `conda` environment: ```bash conda activate IMS ``` Then, run the processing pipeline with: ```bash make all -j $(nproc) \ SSH_LOCATION=user@location \ CELLAR_BOTTLE=/path/to/bottle \ PROJECT_ID=201.001 \ INSTALL_DIR=/path/to/install/dir ``` The finalized collection will be installed to the specified `INSTALL_DIR`. To clean up the working directories, run: ```bash make clean ```