diff --git a/Tools/Audible-Cli.md b/Tools/Audible-Cli.md new file mode 100644 index 000000000..68eda91e4 --- /dev/null +++ b/Tools/Audible-Cli.md @@ -0,0 +1,46 @@ +# Audible CLI + + + +## Setup + +### Authfile + +```bash +audible manage auth-file add --password "" +``` + +### Profile + +```bash +audible manage profile add +``` + +## Download all audio books to the current directory + +```bash +audible -P default -v info download --all --aax --ignore-podcasts --jobs 3 --ignore-errors +``` + +## Convert aax to mp3 + + + +### Get the auth token from audible-cli + +```bash +audible -P default activation-bytes +``` + +### Convert aax to mp3 + +```bash +aaxtomp3 -e:mp3 --level 5 -s --authcode --loglevel 1 +``` + +### Convert all aax to mp3 + + +```bash +find . -name "*.aax" -exec aaxtomp3 -e:mp3 --level 5 -s --authcode --loglevel 1 --complete_dir {} \; +```