diff --git a/README.md b/README.md index 27276e9..9f7b4a8 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,20 @@ # audible-converter +## Setup + +Install [FFmpeg](https://ffmpeg.org/download.html) and [jq](https://stedolan.github.io/jq/download/) + +### Fedora + +```sh +sudo dnf install ffmpeg jq +``` + +## Usage + +1. Download audiobook from Audible in .aax format. +2. Run the following command +```sh +./audible-converter.sh [Path to Audiobook file] +``` +3. A converted file will be saved in the current directory. diff --git a/audible-converter.sh b/audible-converter.sh old mode 100644 new mode 100755