Earlier quoted context omitted.
>Apple understood this when the first iPod came out. Offer a better service, not shinier handcuffs. It's a shame they haven't tried to pressure the publishers into dropping DRM for books. The DRM used by Apple's bookstore is entirely limited to Apple's own apps on its own devices. You can't even read the books in a web browser.
Which is why I try to decrypt everything I purchase, or obtain a decrypted version after purchase. (The only grey-area exception is if I own the physical copy of the book, I consider it ethical to download the ebook, but this is of course debatable to a degree) I'm not trying to screw over authors and publishers, I just want to use my purchased content how I please. They could easily do what Apple did and leave thing…
Kindle is removing download and transfer option on Feb 26th
61–70 of 226 posts
Re: Kindle is removing download and transfer option on Feb 26th
#62I bought a Kobo Clara years ago, and it supports regular MOBI and ePub files.
My book purchases are no longer liked with the reader and I’ve never had a problem in all these years. And this wasn’t even the best or best value for money device I could have bought.
Today there are so many other better alternatives in all price points and form factors.
Re: Kindle is removing download and transfer option on Feb 26th
#63I hear the complaints about Kindle but... How are we supposed to do? In three "taps" I buy a book and 10s later I start reading it. Legally. The device just works. The alternatives? Libraries here (France) have a very limited offer of ebooks. Even for ebooks in English. I owned a Kobo circa 2013 and it was awful. I tried friend's devices more recently, and it's not the UX I expect from a "book". A simple comparison;…
I mean, I can buy a book on a Kobo and read it legally in just as few taps, and I can also borrow a book on Kobo and read it legally.
Also, Kobo plays more nicely with Calibre, including a much nicer DRM-stripping management plugin, which seems relevant to the overall topic of this thread -- all the Kindle DRM removal plugin how-tos out there stopped working reliably for me years ago.
Re: Kindle is removing download and transfer option on Feb 26th
#64Earlier quoted context omitted.
What exactly is the UX you want from an eReader? I find Kindles and Kobos are pretty similar. So I'm curious what exactly was better about Amazon. I personally find Amazon has worse text options, font sizing, line spacing etc. I have purchased eBooks that were just bad OCRs, some publishers just don't care. Kobo will also price match with Amazon, you get credit back and an extra 10% too.
I'm intrigued that you think Kindle has worse text options than Kobo; in my experience it's the other way around. My Kobo doesn't have the ability to justify just body text while leaving headings alone; my Kindles have handled that just fine for over a decade. What options does Kobo have for text that you think Kindle is missing? I use my Kobo for comics and buy those through them (specifically got one with a large s…
Re: Kindle is removing download and transfer option on Feb 26th
#65Earlier quoted context omitted.
What exactly is the UX you want from an eReader? I find Kindles and Kobos are pretty similar. So I'm curious what exactly was better about Amazon. I personally find Amazon has worse text options, font sizing, line spacing etc. I have purchased eBooks that were just bad OCRs, some publishers just don't care. Kobo will also price match with Amazon, you get credit back and an extra 10% too.
I'm intrigued that you think Kindle has worse text options than Kobo; in my experience it's the other way around. My Kobo doesn't have the ability to justify just body text while leaving headings alone; my Kindles have handled that just fine for over a decade. What options does Kobo have for text that you think Kindle is missing? I use my Kobo for comics and buy those through them (specifically got one with a large s…
When I switched over to Kobo a few years ago, it seemed much easier to manage custom fonts, too, although I think Kindle has improved in that regard. I don't think there's a tremendous amount of difference between the two in practice anymore, though. (In terms of text handling, that is.)
Re: Kindle is removing download and transfer option on Feb 26th
#66There have been several threads about this on HN over the past few days and months. Just to avoid the confusion that seems to follow these, a few notes: (1) This is the "Download and Transfer" option where Amazon allowed users to select books they had purchased a license to and download them from the Amazon website. (2) The ability to transfer books from your computer to your Kindle using a USB cable is not affected.…
This is far worse for me than the other possible interpretation - that you could download books but not transfer them. I buy Amazon e-books to read them on other e-readers, but now it looks like I can't.
Re: Kindle is removing download and transfer option on Feb 26th
#67In case anyone else needs to do something similar: Log in to your Amazon account > Manage Your Content and Devices
Copy the cookie and save it to a file ('cookie.txt'): https://github.com/yihong0618/Kindle_download_helper?tab=rea...
Execute the Python utility (this example accesses amazon.co.uk):
python kindle.py --cookie-file cookie.txt --uk -o DOWNLOADS --device_sn [Your Kindle serial no.] --mode all
You can also download a JSON list containing details of all your Kindle books: python kindle.py --cookie-file cookie.txt --uk --list --device_sn [Your Kindle serial no.]
There are other methods outlined in the README, but this worked best for me.I also extracted a list of cover URLs from the JSON file using a basic Python script (with output redirected to a file 'covers.txt'):
import json
with open('book-list.json') as f:
json_data = json.load(f)
for i in range(len(json_data)):
print(json_data[i]['productImage'])
And then I used wget to download them all too: wget --wait=3 --random-wait --input-file=covers.txt
Of course, the books are still DRM'd, but it's trivial to DeDRM them later. The crucial thing was to get the files before it's too late!Re: Kindle is removing download and transfer option on Feb 26th
#68I’m not sure why anyone buys Kindles when there are so many better options available. I bought a Kobo Clara years ago, and it supports regular MOBI and ePub files. My book purchases are no longer liked with the reader and I’ve never had a problem in all these years. And this wasn’t even the best or best value for money device I could have bought. Today there are so many other better alternatives in all price points a…