Skip to content
This repository has been archived by the owner on Aug 18, 2018. It is now read-only.

This JavaScript enables the tap-to-play function on those platforms that do not properly support the EPUB 3 Media Overlay specification (most notably, Apple iBooks).

License

pettarin/rb_smil_emulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

rb_smil_emulator.js

VERY IMPORTANT NOTICE (2015-12-09)

rb_smil_emulator is now deprecated.

Do not use it in production.

Please note that I removed this JS script from the free EPUB 3 Audio-eBooks hosted at ReadBeyond.

Now I think that providing this workaround for reading applications that lack support for EPUB 3 Media Overlays (MO) in reflowable rendition (e.g., iBooks) has been a bad move.

In fact, it has not promoted reading app developers to fill their gaps, and it has given the end users a false perception about the MO support of their reading application.

I hope readers will start caring more about adherence to open formats, and thus they will start asking their app developers to comply with them.

To summarize, I will no longer update the code in this repository, and I strongly urge any developer who forked it to follow suit.

Abstract

  • File name: rb_smil_emulator.js
  • Version: 1.12
  • Date: 2014-05-20
  • Author: Alberto Pettarin (website, contact information)
  • License: the MIT License (MIT), see LICENSE

This Javascript file enables the tap-to-play function on those platforms that do not properly support the EPUB 3 Media Overlay specification (most notably, Apple iBooks).

Please note that this JS script is independent from the integrated audio controls and the regular Media Overlay/SMIL controls that your reading system might provide, and it might conflict with them. Use it at your own risk! If you think that tap-to-play is a useful feature, I request you to urge the developers of your favourite reading system to implement the official EPUB 3 Media Overlay specification.

Although primarily developed for iBooks, it works in modern browsers (e.g., Chrome) as well.

Usage

In your XHTML page (say, page.xhtml) you must add the following code blocks.

In the <head>:

<script type="text/javascript" src="path/to/rb_smil_emulator.js"></script>
<script type="text/javascript" src="path/to/page.smil.js"></script>

As the last element of <body> (see below for optional parameters in the form {k1: p1, k2: p2, k3: p3}):

<script type="text/javascript">
//<![CDATA[
  window.addEventListener('DOMContentLoaded', 
    function() {
      window.rb_smil_emulator.init('path/to/page.mp3', {k1: p1, k2: p2, k3: p3});
    }
  );
//]]>
</script>

Remember to:

  • define two CSS classes to style the active or paused SMIL fragment (the default names are rbActiveFragment and rbPausedFragment, respectively), and
  • generate page.smil.js, containing smil_data and smil_ids.

The SMIL fragments, defined in page.smil.js, must be contiguous (the end of the i-th fragment coincides with the begin of the (i+1)-th fragment), and span the entire audio track (the first fragment should start at time zero, while the last fragment should end at the end of the audio track). Fragments might have zero duration (i.e., their begin and end time coincide).

Please observe that smil_data.length should be equal to smil_ids.length, and it should be equal to the number of SMIL fragments; the fragments must appear in these two arrays sorted according to their begin time. Fragment IDs might be arbitrary (but unique) strings.

Optional parameter keys include:

  • active_fragment_class_name
  • paused_fragment_class_name
  • autostart_audio
  • autostart_wait_event
  • autoturn_page
  • single_fragment
  • outside_taps_clear
  • outside_taps_can_resume
  • outside_taps_threshold
  • associated_events
  • ignore_taps_on_a_elements
  • allowed_reading_systems
  • hide_elements

The meaning of the above options, their type and default value are described in the comment right above init() in the source code.

Source code

Please see the src/ directory.

Examples

A minimal (but working) example can be found in the minimal/ directory.

Several full, regular EPUB3 Audio-eBook samples can be freely downloaded from ReadBeyond Web Site.

Limitations and Missing Features

  • Support generic SMIL fragments (not necessarily contiguous nor spanning the entire audio track)
  • Support multiple highlighted elements at the same time
  • Integration with existing <audio> (or <video>) element (unfortunately at the moment seeking seems broken in iBooks)
  • More flexible, user-customizable interaction between user click/touch and audio rendition behaviour
  • Use/integrate existing SMIL libraries (e.g., timesheet.js)
  • Avoid collision of two audio sources, especially in iBooks (if possible at all --- right now it does not seem possible)
  • Load next chapter upon the end of the current (if possible at all --- right now it does not seem possible)

Acknowledgments

  • I was inspired by the source code of Readium and Timesheet.js
  • Thanks to Giulio Cesare Solaroli for a useful discussion about JS
  • Thanks to torazaburo for answering my question about how to make iBook turn page with JS
  • Thanks to Frank Chen for providing a sample JS code incorporated into the current code for the autoturnpage option
  • Thanks to Dirk for spotting a problem with applying/removing CSS via classList
  • Thanks to Daniel Weck for providing the code for detecting the new Readium platform and iBooks for Mac OS X.

Please feel free to send me your feedback about this project (my email address can be found in the source code header), and/or fork and improve it!

About

This JavaScript enables the tap-to-play function on those platforms that do not properly support the EPUB 3 Media Overlay specification (most notably, Apple iBooks).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published