Subcribe to our RSS Feed

Experiment: Advancing ePub with HTML5 Video’s

November 16th, 2009 | No Comments | Posted in Tutorials/Help by Mike Cook

There are a number of people in the eBook world who really know their ePub format – luckily for us they enjoy sharing this knowledge among the community. One of these such people is Bookworm developer, Liza Daly.

There’s a lot of a misconception around the ePub format with the belief that it is not a very advance format to work with, this is certainly not the case. Being based on several web standards, ePub can do pretty much whatever those standards can do themselves.

In a recent blog post, Liza conducted an experiment to include a HTML5 <video> in an ePub file, which she accomplished by using out-of-island XML mark-up. Okay, so this is something of a hack, and very few ePub readers will render the content (although Bookworm does), but this just goes to show there’s some power in the ePub standard.

All you ePub developers out there might want to keep an eye on Lizas blog as she will be sharing lots of ePub tips throughout this month.

Tags: Bookworm, ePub Format, HTML5, Liza Daly, Threepress, Tutorials, Video

An ePub Experience

October 9th, 2009 | 2 Comments | Posted in ePub Blog by Mike Cook

A few days ago I had the pleasure of being invited up to Stockholm to sit with a bunch of like minded people and talk about eBooks – specifically the ePub format. This was a very eye-opening experience indeed.

I was invited to Sweden by Publit, a company who have set themselves the task of making all the Swedish out-of-print books available as PoD (Print on Demand) titles. Considering that 95% of all Swedish books ever in existence are now out of print, this is a very worthy project, if perhaps somewhat daunting. Although Publit’s main business is PoD, they are making use of this opportunity to also provide these titles as ePub eBooks.

During my time in Sweden we discussed the many different areas of the eBook world, including DRM (of course), the processes involved in going from scanned document (TIFF/PDF/DOC) to an eBook Master format and onto ePub creation itself.

Now, the people at Publit are a group of very talented individuals with plenty of technical knowledge, yet there were aspects of ePub which has left them somewhat perplexed. There were two main points which I found interesting and have heard before around the web so I thought I would share them here. Read the full article »

Tags: DocBook, DTBook, ePub Format, OPS, PoD, Publit, TEI

Free ePub books at the new epubBooks.com

June 14th, 2009 | 1 Comment | Posted in ePub Blog by Mike Cook

epubBooks LogoAfter several months of development the new epubBooks.com website is now live. The new site has been developed to give access to free ePub book downloads and has been designed with simplicity of use in mind – hopefully visually pleasing too.

All the current downloads have been produced from public domain titles using my own automation tools (with a little help from Liza Daly). These tools have been developed to give features which are often only found in commercial eBooks, and even then, many of the classics available don’t have such features.

All footnotes are fully linkable both to the note itself and also back to the page it was linked from. Illustrations are included in a number of books (for those where they are available). Many other advanced layout and formatting features have been included, which are often only available with handmade books.

At present the library of books is quite small, but from now I will be concentrating on converting new books and improving the speed at which they are converted.

Over the last year or so I’ve seen forums and blogs asking why there are not that many books which have illustrations, and so this was one area I wanted to concentrate on. Illustrated books are quite tricky to convert automatically so the numbers of new titles being added to the site will be limited, however, I will be working to improve in this area.

If you have comments on the new website or the ePub books that I provide then please do contact me.

While developing the new site I have been neglecting the Blog terribly, so I am going to make much more of an effort to update this with any ePub relevant news on a regular basis.

I hope you enjoy the new website — Mike.

Tags: ePub Format, Illustrated eBooks

EPUB books can now be borrowed from the library

January 17th, 2009 | 3 Comments | Posted in ePub Blog by Mike Cook

CLEVNET Library LogoI Twittered (twitter.com/epub) about the Cleveland Public Library press release when it was first announced, and David from TeleRead has also written a post on this. “This” being that the Cleveland library is the first library to offer up eBook downloads in the EPUB format! Naturally this is great news for the EPUB fans, but more importantly it’s great for the general public at large.

OverDrive are providing them and another 8,500 libraries access to EPUB books for borrowing. We must also presume that as OverDrive increase their number of EPUB titles , all these libraries will be offered them too.

As TeleRead mentions, it would be great if they could also offer their books via popular iPhone readers such as Stanza which could then encourage younger readers to get back to books.

I expect 8,500 libraries is a good coverage across the U.S. but as an European I hope our libraries can strike a similiar deal. If both sides of the big pond can offer up these services then there’s potential for more countries to follow suit, which would be particularly useful for those where moving a ton of paper books around can be quite difficult and expensive.

Tags: ePub Format, iPhone, Libraries, OverDrive, TeleRead, Twitter

Marking Up Page Numbers in the EPUB NCX

December 9th, 2008 | No Comments | Posted in Tutorials/Help, ePub Blog by Mike Cook

Below is an example <pageList> markup (that is valid per the NCX DTD) which can be used to mark up page numbers within ePub documents.

Note that <pageList> must be placed right after the required <navMap>, and must occur before the first optional <navList>. There may be one and only one <pageList> (but there can be any number of <navList> — of course, there can only be one <navMap>).

<pageList id="page-mapping">

  <navLabel><text>Paper Edition Page Mapping</text></navLabel>

  <pageTarget id="page-iii" value="3" type="front" playOrder="82">
    <navLabel><text>Page iii</text></navLabel>
    <content src="frontmatter.html#pageiii"/>
  </pageTarget>

  <!-- ... -->

  <pageTarget id="page-105" value="105" type="normal" playOrder="192">
    <navLabel><text>Page 105</text></navLabel>
    <content src="chap5.html#page105"/>
  </pageTarget>

</pageList>

Notes:

1. Currently there is an error in epubcheck 1.0.3 which says <pageList> must include both the id and class attributes, while they should be optional. Hopefully that bug will get fixed. The above markup includes the optional id (generally a good idea), but not the class so it will not validate to 1.0.3.
Read the full article »

Tags: ePub Format, NCX

epubcheck and Adobe’s page-map attribute

December 8th, 2008 | No Comments | Posted in Tools, Tutorials/Help by Mike Cook

A couple of weeks back we had a new release of the epub validation tool as the old one was not validating documents properly. epubcheck-1.0.3 was released to fix the XMLParser as it was not allowing multiple validators to be added.

The error was first realised by Jon Noring who noticed that Adobe’s “page-map” attribute extension, which is used in the NCX , was being validated incorrectly. This extended markup can be used for mapping page numbers (to align with those in the paper book edition).

Jon Noring has posted to several communities about the page-map issue. Here’s a short extract (slightly edited); Read the full article »

Tags: Adobe, ePub Format, ePub Tools, epubcheck, NCX

Can we hope for an Amazon and ePub union?

November 26th, 2008 | 1 Comment | Posted in ePub Blog by Mike Cook

Amazon/ePub LogoEPUB formatted books as an industry wide standard is what I, and many others want. But can we achieve this without Amazon’s adoption — at least with ePub support on their Kindle eBook reader.

It will certainly be a lot easier to have a standard eBook format if Amazon joined the ePub party. I’m reluctant to say it but all current indications show that Amazon will not adopt the ePub format in the near future – but perhaps there is hope.

Recently we have seen a flurry of publishers and eBook projects (including yours truly) adopting the ePub format and a number of these are pushing their titles onto the iPhone/iPod Touch platform via the Stanza eBook reader. Feedbooks, Project Gutenberg are the two big projects but we now have Pan Macmillan offering commercial Tasters and in the last few days BookGlutton announced that they have joined forces with Stanza. Interesting times ahead for sure.

With all this recent iPhone/eBook activity I am asking myself, where is Amazon? The Kindle is certainly making waves with big sale numbers but this is probably nothing compared to iPhone sales. This makes me wonder if Amazon will start making their titles available on this platform and if so, what format will they use. If they use their own eBook format (AZW), they would need to release a dedicated ‘Amazon eBook Reader’ — how many different iPhone reader applications will people accept?

Everyone around here knows that having one standard eBook format will better serve everyone. If Amazon opens their Kindle to the ePub format and strikes a deal with a company such as Lexcycle (Stanza) they could kill two birds with one stone. Hmm, perhaps an Amazon/Stranza union is a little too much wishful thinking.

Providing direct purchase and download would make Amazon a serious option for any iPhone or iPod Touch user, and vise versa.

So, can Amazon leverage the iPhone to further dominate the eBook market and can they continue to resist the ePub eBook format?

Disclaimer: The Amazon/ePub logo I created is intended just for fun.

Tags: Amazon, BookGlutton, ePub Format, Feedbooks, iPhone, Kindle, Stanza

Using Q tags in ePub documents

November 14th, 2008 | 2 Comments | Posted in Tutorials/Help by Mike Cook

Recently I’ve been making great progress on my ePub converter but in the process I’ve come across a few areas that have needed some thought. For this short article I’m going to discuss the XHTML Quote tag.

When looking though the IDPF OPS specs I noticed that <q> tags are allowed within ePub documents. As I mark up all quotes in my master TEI documents with a <q> tag I was really happy to see this. However, when I came to test my files in Adobe Digital Editions none of my quotes showed.

After seaching around the net I also noticed that <q> tags are not supported by all web browsers (i.e. Internet Explorer). Liza Daly has also noted that the HTML 5.0 specs will depreciate Q tags – will a version of XHTML follow suite in the future? Will a future IDPF OPS spec implement that future XHTML spec?

(FYI, Liza mentioned that she is currently working on implementing <q> tags in her Bookworm reader, with a work around for IE.)

This is an area which I believe ePub developers should give some serious thought over. Even if Adobe DE go ahead and implement this feature, other readers may not necessarily follow suite.

For my own project I have decided to convert all my <q> tags into regular “quote” characters. Providing more safety both now and in the long term.

Tags: Bookworm, ePub Format, IDPF, OPS, XHTML Markup

W.H.Smith’s are now selling ePub eBooks!

October 27th, 2008 | No Comments | Posted in ePub Blog by Mike Cook

During the Digital Lunch seminar at this years Frankfurt Book Fair, Michael Vantusko from Overdrive commented that W.H.Smith was one of their eBook customers. As I was updating the epubbooks.com homepage I thought I’d check them out to see if they actually have them online yet. I don’t know the date W.H.Smith went live with their ePub books but they currently have almost 6,500 ePub titles.

As Overdrive also distribute to Waterstones I would imagine that the W.H.Smith eBook collection will grow quite quickly. It’s great to see more stores offering ePub formatted books to the consumers – perhaps this extra competition will result in lower eBook prices sooner rather than later.

There is however quite some way to go before the number of ePub titles reaches the overall eBook numbers. Here’s a quick breakdown of the current eBook titles in the W.H.Smith eBook store;

Read the full article »

Tags: ePub Format, Frankfurt Book Fair, W.H.Smith

ePub Books attends the Frankfurt Book Fair 2008

October 18th, 2008 | 1 Comment | Posted in Events by Mike Cook

Frankfurt Book Fair LogoI was very lucky this year to be able to attend the Frankfurt Book Fair. As it was only going to be a one day affair for me I choose Thursday, the day of the Digital Lunch: Digital Publishing and the EPUB Standard’ seminar.

Before the session got under way I had a quick look around the ‘Digital Market Place’ Hall and came across the iRex Digital Reader stand where they were showing off their DR1000 model. Along with having a basic reader they also have two models with a Wacom touch screen and one of those with Wi-Fi. All models have a 10.2 inch display (1024×1280 pixels) – so no need to go zooming in on your PDF files now. This looks a great piece of equipment. After checking out the iRex stand I then made my way down to the IDPF session.

There were four speakers at the Digital Lunch, Michael Smith (IDPF Executive Director), Michael Vantusko (Overdrive – unfortunately Steve Potash could not make it), Fionnuala Duggan (Random House Digital Group UK) and Robert Nell (Sony Reader).

Mike Smith got things started with an outline of the IDPF and the ePub format. He discussed the amazing sales figures we’ve been seeing in the eBook world and the uptake of the ePub standard from publishers and conversion houses.

Read the full article »

Tags: ePub Format, Events, Frankfurt Book Fair, IDPF, Sony Reader