Skip to content

Commit

Permalink
fix: audible-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxd committed Feb 26, 2023
1 parent 1a3ee7b commit fa4957f
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions Tools/Audible-Cli.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Audible CLI

<https://github.com/mkb79/audible-cli>

## Setup

### Authfile

```bash
audible manage auth-file add --password "<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

<https://github.com/KrumpetPirate/AAXtoMP3>

### 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 <authcode> --loglevel 1 <file.aax>
```

### Convert all aax to mp3


```bash
find . -name "*.aax" -exec aaxtomp3 -e:mp3 --level 5 -s --authcode <authcode> --loglevel 1 --complete_dir <path> {} \;
```

0 comments on commit fa4957f

Please sign in to comment.