From 44c67afc9a0629db2f08b3ff54217f062c8426d2 Mon Sep 17 00:00:00 2001 From: ami Date: Fri, 10 Jan 2025 22:43:05 -0500 Subject: [PATCH] Initial Commit --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md 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 + +```