My first job out of college was scanning books for the Internet Archive down in the basement of the Library of Congress. Their scanning machines used a foot pedal to raise and lower the glass Platen, so I'd use one hand to flip the page and wiggle the cradle to get things nice and flat and the other would snap the photo. You can get pretty fast after a while, but boy is it mindless. Older books that had been rebound…
Wow that's awesome! I take it you're responsible for a chunk of the books available now on openlibrary.org? When scanning books like that did you ever see anything interesting or are you so zoned out you don't really pay attention?
DIY Book Scanner
81–90 of 132 posts
Re: DIY Book Scanner
#82My first job out of college was scanning books for the Internet Archive down in the basement of the Library of Congress. Their scanning machines used a foot pedal to raise and lower the glass Platen, so I'd use one hand to flip the page and wiggle the cradle to get things nice and flat and the other would snap the photo. You can get pretty fast after a while, but boy is it mindless. Older books that had been rebound…
Were you using gloves or something like that?
Re: DIY Book Scanner
#83 while true ; do
for x in *.pnm ; do
killall display
display -rotate 90 $x &
done
sleep 5
doneRe: DIY Book Scanner
#84If you have fast flatbed scanner, you can scan 300 pages in thirty minutes. Not worth the effort to build automation. Bigger problem was to sort out all errors and missed pages afterwards. Real-time display (from Imagemaqick) solved this problem: while true ; do for x in *.pnm ; do killall display display -rotate 90 $x & done sleep 5 done
mkdir kaksi
rm kaksi/*
j=102
scale=600
size=500x730
yla=27
for x in *.pnm ; do
echo $x
gm convert $x -rotate 90 -crop $size+20+$yla -resize $scale -normalize kaksi/k$j.jpg
j=$((j+2))
done
j=103
for x in *.pnm ; do
echo $x
gm convert $x -rotate 90 -crop $size+530+$yla -resize $scale -normalize kaksi/k$j.jpg
j=$((j+2))
done
cd kaksi
gm convert *.jpg -format pdf TheBook.pdfRe: DIY Book Scanner
#85Re: DIY Book Scanner
#86At Japan in the meantime, people in book scanning community (that exists) often just cut the book spine and scan the pages using normal scanner, throw it away once all the pages are scanned. People (rightly) value room spaces than books there. It's called "Ji-sui" (scanning by oneself) and gear recommendation sites like [1] are abundant. Another reason of "Ji-sui" prevalence was the poor availability of ebooks, altho…
One business I kinda want to exist is a book warehouse/scanning operation. I send them boxes of books; they give me an app with access to digital versions of every book I send them. The whole operation is somewhere in, say, Nebraska, so storage cost is very low.
Re: DIY Book Scanner
#87Earlier quoted context omitted.
Unsure about IA, but gloves are typically advised against[0] unless you have a suspicion that the book will be dangerous (arsenic ink in bindings[1], dust, mold or frass (sadly)[2]). Hand-washing before is typical advice but YMMV [0] https://www.nationaltrust.org.uk/features/why-wearing-gloves... [1] https://daily.jstor.org/some-books-can-kill/ [2] https://www.ifla.org/node/93094
I get the points against gloves in your links, but from my experience my hands will constantly leave fingerprints and oil on the books no matter how much I wash it. How do they avoid this issue? Or just don't bother?
Re: DIY Book Scanner
#88Re: DIY Book Scanner
#89This really needs to be redesigned for ergonomics. - Lever should have a button for capture - Display should be visible while looking down But now I see why destructive scanning (slicing the binding off and using a sheet feeding scanner) is so attractive. For any non-rare books, this is just too tedious and time consuming to go through for more than a few books.
Display should be visible indeed. Your capture triggering suggestion is not as great though. The systems that I shipped with http://diybookscanner.eu actually used a USB foot pedal for triggering the cameras. That's by far a superior user experience to pressing a button while both hands are busy moving a cradle... Destructive scanning feels incredibly cruel to the books. A non-destructive system like this actually wo…
I suppose it depends on whether it has sentimental value. When I was young, I'd treat my books like treasures, putting covers on them (even paperbacks), making sure I didn't crease the spine when I read them. Now I consider books to be a temporary store of knowledge as the contents pass to my brain. I fold pages, underline, scribble notes in them. There are thousands more copies out there, I don't feel any need to baby my copy.