- Listen to key ideas from the world's best non-fiction books in just 15 minutes.
- Golang
1.10.2or higher. - Blinkist (https://www.blinkist.com) Premium account.
- Roughly 25 GB of free disk space.
- wget installed and setup in PATH
Enter your username and password in:
blinkist/main.go, lines #16, #17.download/download.go, lines #17, #18.
- Run
go run main.goinsideblinkist/folder to producebooks_urls.txt, the list of unduplicated URLs of all of the books. - Run
go run download.goinsidedownload/folder to start downloading audio files from the above URLs.books_urls.txtmust be present in thedownload/folder!
-
Look for HTML tag
data-book-ide.g."5c28f2fc6cee070008e7a3d7"in each book URL. -
Look for all HTML tags
data-chapterNoe.g."1"and correspondingdata-chapterIde.g."5c28f3296cee070007b46369"(both on the same line) from each book URL. -
Construct this API link to get the short-lived download link:
https://www.blinkist.com/api/books/<data-book-id>/chapters/<data-chapterId>/audio. (e.g.https://www.blinkist.com/api/books/5c28f2fc6cee070008e7a3d7/chapters/5c28f3296cee070007b46369/audio). -
Read the output for each book chapter, e.g.:
{"url":"https://abcdefgh12345.cloudfront.net/5c28f2fc6cee070008e7a3d7/5c28f3296cee070007b46369.m4a?Expires=1234567890\u0026Signature=abcdefghijklmnopqrstuvwxyz1234-567890abcde-fghi~jklmnopqrstuvwxyz1234567890abcdefgh~jklmnopqrstuvwxyz1234567890abcdefgh-abcd~abcdefghijklmnopqrstuvwxyz1234-567890abcde~jklmnopqrstuvwxyz1234567890abcdefgh-jklmnopqrstuvwxyz1234567890abcdefgh-567890abcde__\u0026Key-Pair-Id=ABCDEFGHIJKLMNOPQRST"}-
If the book contains audio (the previous step returns something), create a folder based on JavaScript tag e.g.
"reader:book:title:changed", "Bad Blood"on the local drive. -
Decode to proper URL, (replace
\u0026with&), e.g.:https://abcdefgh12345.cloudfront.net/5c28f2fc6cee070008e7a3d7/5c28f3296cee070007b46369.m4a?Expires=1234567890&Signature=abcdefghijklmnopqrstuvwxyz1234-567890abcde-fghi~jklmnopqrstuvwxyz1234567890abcdefgh~jklmnopqrstuvwxyz1234567890abcdefgh-abcd~abcdefghijklmnopqrstuvwxyz1234-567890abcde~jklmnopqrstuvwxyz1234567890abcdefgh-jklmnopqrstuvwxyz1234567890abcdefgh-567890abcde__&Key-Pair-Id=ABCDEFGHIJKLMNOPQRST -
Download the chapter using the above link as the m4a file. Filename will be based on
data-chapterNoand stored in the book title folder, e.g.:Bad Blood/000.m4a,Bad Blood/001.m4a,Bad Blood/002.m4a,... .
| Item | Size |
|---|---|
| Categories | 27 |
| Books | 1,771 |
| Books with Audio | 1,576 |
| Books missing Audio | 195 |
| No. of m4a files | 14,646 |
| All files size | 26,473,732,000 B (25.2GB) |