Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 03-04-2015, 12:44 PM   #1
JJAH
Junior Member
JJAH began at the beginning.
 
Posts: 9
Karma: 10
Join Date: Mar 2015
Device: Kindle Keyboard
Talking Syncing highlights and notes from sideloaded files accross devices.

Hello guys, I'm a long time lurker and an even older user (like, ten years) but lost my mail and password a long ago.

I know come to you with a silly, silly question regarding syncing highlights and notes from sideloaded files accross devices.


Sooner or later I intend to buy a new Kindle, quite possibly the Voyage. Now, before that happens, I understand that annotations and highlights from Amazon ebooks are automatically synced between devices, but what happens to sideloaded books and PDFs? Will those marks be synced to the new Kindle? Will the files appear with those marks when transferred to it?
I'm really interested in knowing with exactitude because a very, very large part of my collection consists on sideloaded stuff. All legal though. Don't get yourselves wrong.

Then, when I sideload the files to the new Kindle, will the marks appear on their own? Or am I stuck?
JJAH is offline   Reply With Quote
Old 03-05-2015, 11:06 AM   #2
JJAH
Junior Member
JJAH began at the beginning.
 
Posts: 9
Karma: 10
Join Date: Mar 2015
Device: Kindle Keyboard
Yo, I've found that notes can be kept by manually copying the .PDR file that is in the same folder as your pdf. Let me give you an example:
BLAH.PDF BLAH.PDR
I've only tried it within the same kindle but it has worked for me. I've yet to test it using two Kindles, and also with highligths.
Although I've noticed that some PDF don't display highlights properly in the "View Notes and Marks" screen, so I didn't bother with something that might not work properly.
JJAH is offline   Reply With Quote
Advert
Old 03-05-2015, 02:16 PM   #3
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,422
Karma: 85397180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Correct -- however, note that while old devices store annotations as {book_title}.(pdr|mbp1|etc), the new devices store them as {book_title}.sdr/{book_title}.(pdr|mbp1|etc) -- that is, in a folder next to the book, with a .sdr extension. You need them to match properly.
eschwartz is offline   Reply With Quote
Old 03-07-2015, 09:42 AM   #4
JJAH
Junior Member
JJAH began at the beginning.
 
Posts: 9
Karma: 10
Join Date: Mar 2015
Device: Kindle Keyboard
Quote:
Originally Posted by eschwartz View Post
Correct -- however, note that while old devices store annotations as {book_title}.(pdr|mbp1|etc), the new devices store them as {book_title}.sdr/{book_title}.(pdr|mbp1|etc) -- that is, in a folder next to the book, with a .sdr extension. You need them to match properly.
Oh boy, thanks for the reply. Is there a tool to migrate those notes and marks? Or am I out of luck and have to do it manually?
JJAH is offline   Reply With Quote
Old 03-07-2015, 10:08 AM   #5
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,478
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
Hmm, rsync and a bit of elbow grease? There might be some custom Python stuff laying around on GitHub that does that kind of stuff, but I might be a tad optimist there...
NiLuJe is offline   Reply With Quote
Advert
Old 03-07-2015, 03:14 PM   #6
JJAH
Junior Member
JJAH began at the beginning.
 
Posts: 9
Karma: 10
Join Date: Mar 2015
Device: Kindle Keyboard
Quote:
Originally Posted by NiLuJe View Post
Hmm, rsync and a bit of elbow grease? There might be some custom Python stuff laying around on GitHub that does that kind of stuff, but I might be a tad optimist there...
Considering my mad, non-existant skills, I'll go with the good old manual mode hahaha

Thanks for your answers.
JJAH is offline   Reply With Quote
Old 03-07-2015, 10:25 PM   #7
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,422
Karma: 85397180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Some sort of bulk rename tool might work.

EDIT: In linux, what about the following cli solution:

Code:
find -regex '\./.*\.\(azw3r\|mbp1\)' -exec sh -c 'for x; do ext=${x##*.}; needdir="${x%.*}.sdr"; fname="${x##*/}"; mkdir -p "${needdir}"; mv -- "${x}" "${needdir}/${fname}";  done' _ {} +
If you use Windows you just need to install Gow and use gfind instead of find, or use cygwin, or find your own solution. It seems from google that your average bulk rename program does not support creating directories, and I have no patience to find a windows batch/powershell solution (I am terrible at either).

Credits to http://unix.stackexchange.com/a/24141 and good ole trusty http://tldp.org/LDP/abs/html/string-manipulation.html (I am slowly getting the hang of it...)

Last edited by eschwartz; 03-07-2015 at 11:35 PM.
eschwartz is offline   Reply With Quote
Reply

Tags
highlights and notes, sideloaded books, sync


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
notes, highlights, bookmarks syncing: how will it work? tsolignani Marvin 5 01-08-2014 09:16 PM
Notes, highlights and syncing Kumabjorn Amazon Kindle 11 07-07-2013 03:32 PM
Syncing books, highlights, and notes ml55 Calibre 4 11-25-2011 08:22 PM
Syncing Notes and Highlights Across Devices steven1979 Kobo Reader 5 10-22-2011 09:23 PM
Syncing bookmarks, highlights and last page read for sideloaded books polbit Amazon Kindle 2 07-30-2010 12:16 PM


All times are GMT -4. The time now is 09:28 AM.


MobileRead.com is a privately owned, operated and funded community.