commit 44c67afc9a0629db2f08b3ff54217f062c8426d2 Author: ami Date: Fri Jan 10 22:43:05 2025 -0500 Initial Commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..e512fb2 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# Instrumental Music Collection + +## Description + +This repository contains scripts to automate encoding and metadata management of instrumental tracks. + +## Requirements + +The project depends on the following: + +- `ffmpeg` +- `metaflac` + +## Running + +To encode all files to `.flac` and write metadata, run: + +```sh +make all -j 14 +``` + +To install the encoded files to a target location, run: + +```sh +make install INSTALL_DIR=/path/to/dir + +```