-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> {} \; | ||
``` |