From 49003c998308f9841e4c537efd3ad38de64efb6d Mon Sep 17 00:00:00 2001 From: Thomas Heck Date: Wed, 10 Feb 2021 23:21:57 +0100 Subject: [PATCH] add readme --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4555b12 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# audio-conv + +Takes two paths, all audio files encountered in the first path are transcoded and stored in the +second path. The directory structure from the first path gets also copied to the second path. + +## Dependencies + +Requires *gstreamer* version 1.10 or higher with the *base* plugin. + +The supported source audio formats (or even other media that is able to contain audio) depend on +the installed *gstreamer* plugins. + +## Installation via nix flakes + +*audio-conv* can be easily installed via *nix flakes*: + +```bash +$ nix profile install gitlab:chpio/audio-conv/release +``` + +## Generate example config + +*audio-conv* is able to write an example config to your current directory: + +```bash +$ audio-conv init +``` + +Now you need to edit the generated *audio-conv.yaml* file. And let it convert your audio files +by running it: + +```bash +$ audio-conv +```