![]() |
#136 |
Enthusiast
![]() Posts: 43
Karma: 10
Join Date: Apr 2008
Device: Iliad 2nd ed.
|
where's my ebook library? Its site seems down! I really like its function of extracting isbn from filenames!!!! I plan to rename all my books with their isbn+title, this program will come as a handy management of them then.
|
![]() |
![]() |
![]() |
#137 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 79,750
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
eBook Library is the program Sony wrote to talk to the 500/505.
|
![]() |
![]() |
![]() |
#138 |
Enthusiast
![]() Posts: 43
Karma: 10
Join Date: Apr 2008
Device: Iliad 2nd ed.
|
I'm sorry but I meant the independent freeware called "My Ebook Library". Its website used to be "www.myebooklibrary.co.uk". but that site has been down for quite some time. I wonder what happened to them.
|
![]() |
![]() |
![]() |
#139 | |
Junior Member
![]() Posts: 4
Karma: 10
Join Date: Sep 2008
Device: none
|
![]() Quote:
You can head on over to the Home Library website at http://homelibrary.co.cc/ to check it out. Cheers! Tim. |
|
![]() |
![]() |
![]() |
#140 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Mar 2010
Device: none
|
A while ago, I was looking for e-book catalog software too. I found and tried "Collectorz.com Book Collector Pro" but it did not meet my expectations. It focuses more on cataloging books in general, and adds some support for e-books too, but it certainly is not the iTunes for e-books I was looking for.
Now, since I have a large collection of "technical" e-books (several 100) basically in two formats (PDF and CHM), I found another solution. I created an XML-file with all the e-book's metadata (title, author, publisher, release date, version, ISBN-code etc.). It is simple and straight forward. I feed this catalog with metadata using a Perl script talking to the Amazon webservice. All it requires is the book's ISBN-number. The XML-file itself is turned into a human readable HTML-page using an XSLT stylesheet. That's it. If someone is interested, I'd be glad to post the solution. I do hope that Apple will enter the world of e-book software with the release of their new iPad. I believe many people are longing for something like "an iTunes for e-books". |
![]() |
![]() |
![]() |
#141 |
Junior Member
![]() Posts: 1
Karma: 10
Join Date: Mar 2010
Location: Amsterdam
Device: Sony eReader Touch PRS-600
|
I'm using Calibre.Lots of options
|
![]() |
![]() |
![]() |
#142 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 11,470
Karma: 13095790
Join Date: Aug 2007
Location: Grass Valley, CA
Device: EB 1150, EZ Reader, Literati, iPad 2 & Air 2, iPhone 7
|
Quote:
There is an eBook reader for the iPad and it does use iTunes and there will be an eBook store by Apple. Unfortunately the whole system will be incompatible with other devices even the DRM scheme. For more info read our wiki. Dale |
|
![]() |
![]() |
![]() |
#143 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Mar 2010
Device: none
|
Calibre2
I had a quick look at Calibre. I remember I did it before, and I was not too impressed by its capabilities. Seeing the newest version, I admit it has improved a lot, but still, it does not meet my expectations of what an e-book catalog application should do. For instance, I tried to add 100 randomly chosen e-books of mine: it found metadata for merely 5% of them. And these are all recent, well-known technical e-books (with the ISBN number in the filename). So no, I'll stick with my Perl-script and Amazon webservice solution for a while. It works for me.
For me, an e-book catalog application should be all about managing metadata, and using (free) on-line services to do this in the fastest possible way. The look and feel of the application presenting the data is of less importance to me (hence, my HTML-approach). (I'll post my Perl/Amazon solution here or on the wiki in the coming days.) |
![]() |
![]() |
![]() |
#144 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Mar 2010
Device: none
|
In addition to my previous post(s). If you are into freeware (whether it be open source or not), then the most promising candidate for cataloging and maintaining e-books I ran into was "eKitaab". This is a Java application with a clean interface which uses the Amazon webservice to get a book's metadata with only the ISBN number as a reference. In a way, I do the same thing now, not using a real application however, but a low-level script in stead.
So why am I not using eKitaab? Because development stopped at version 0.6, using the old Amazon webservice as a source for metadata. Since Amazon has changed its interface, the code has not been updated. It is a pity, because eKitaab really seemed promising. I have been thinking of collaborating with the developer of that application, to create a newer version, because I happen to be a Java programmer myself (well, sort of), but I also happen to be a little lazy (unfortunately) so I'm not sure if I will be able to work on that in the near future. Last edited by catpower73; 03-14-2010 at 05:52 PM. |
![]() |
![]() |
![]() |
#145 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Mar 2010
Device: none
|
Simple ebook catalog solution using XML/XSL/Perl/WS-Amazon
Attached you'll find my very simple ebook solution using:
- a XML-file storing the catalog; - a XSL-file (stylesheet) to turn the XML into readable HTML; - a Perl script to get new metadata using the Amazon Web Services (AWS). This won't work out-of-the-box! You'll need to get a free account to use the Amazon Web Services (AWS) first. Doing so, you'll get: - a file named "RequestSignatureHelper.pm" that is used in the Perl script; - your "Access Key ID", unique for your account; - your "Secret Access Key", unique for your account. Put the file "RequestSignatureHelper.pm" in the same folder as the Perl script. Fill in the AWS keys specific to your account in the Perl script. Open the XML-file in your browser: it should be processed by the stylesheet (XSL-file) into a readable HTML-page. If it does not work, try opening the file "index.htm" in stead. I have added 10 randomly chosen books for reference. The Perl script searches for all files with a valid EAN/ISBN13 code in their filename, and extension .PDF or .CHM (filetypes I am using). It uses the EAN/ISBN13 to fetch the metadata from Amazon and uses some of it's content to assemble a new filename and one line of XML-tags to add to the file "books.xml". This solution works for me. It may not be what you are looking for. I thought I'd post it anyway. What can be improved? I'd like to make the HTML-page more dynamic. Using JSON and some clever JavaScript library, I guess you can make the table sortable and it should be possible to add a filter (input field) to limit the ebook-records shown. Furthermore, as far as I'm aware of, the Amazon webservices do not return "tags" which is a pity. Adding tags to a book's metadata would increase the usefulness of the catalog tremendously. |
![]() |
![]() |
![]() |
#146 | |
Junior Member
![]() Posts: 1
Karma: 10
Join Date: Aug 2010
Device: Sony PRS-505
|
LRF and FB2 indexing plug-in for Google Desktop and Windows Search
Quote:
|
|
![]() |
![]() |
![]() |
#147 | |
Junior Member
![]() Posts: 1
Karma: 10
Join Date: Feb 2011
Device: IPad
|
RequestSignatureHelper.pm
Quote:
|
|
![]() |
![]() |
![]() |
#148 |
Junior Member
![]() Posts: 6
Karma: 10
Join Date: Mar 2010
Device: none
|
AWS file: RequestSignatureHelper.pm
I could not find the file "RequestSignatureHelper.pm" anymore on the AWS website. Use the old version I am using for quite some time (attached).
|
![]() |
![]() |
![]() |
#149 |
Junior Member
![]() Posts: 1
Karma: 10
Join Date: Mar 2012
Device: Bebook
|
Hi Rwood
I use a program Called "EVERYTHING" Type in the title and it will return every reference on your computer by first name or surname with locations.You are then able access the books as if in windows. The program will miss nothing. I have used it for over 2 years with no ill effects to my computer. Regards Brian |
![]() |
![]() |
![]() |
#150 | |
Evangelist
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 435
Karma: 572984
Join Date: Jan 2010
Location: Long Island
Device: Kobo Libra 2, Kindle 4, Nook Gl4, Nook STR, REB 1100, Ebookwise 1500,
|
Quote:
Beth |
|
![]() |
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Inventory running low!! | Robertb | Astak EZReader | 2 | 12-03-2009 09:18 PM |
Seriously thoughtful Good library / cataloging software for Mac? | AlfonsVH | Lounge | 7 | 08-24-2009 04:18 PM |
Best OS X book management program for PRS-700 | thibaulthalpern | Sony Reader | 7 | 03-15-2009 12:00 PM |
Tor Restarts Their Free E-Book Program | RWood | News | 10 | 09-29-2008 04:49 PM |
Who's collected and done what? A new Reader Inventory Poll | NatCh | Sony Reader | 6 | 07-15-2007 11:30 PM |