Quote:
Originally Posted by JSWolf
But remember, most ePub renderers won't play that video.
|
I second this.
Also, remember that many ADE-based devices have a bug where they can't click a link that encompasses an image:
Code:
<a href="http://sample.com/videolink"><img alt="Sample Video Title" src="../Images/samplescreenshot.jpg" /></a>
For maximum compatibility, you would want the image, followed by the text link below that leads directly to the video (I know I know, hideous, but will work on any device). This also allows someone with a non-internet connected device to be able to type in the link manually.
Code:
<img alt="Sample Video Title" src="../Images/samplescreenshot.jpg" />
<p><a href="http://sample.com/videolink">http://sample.com/videolink</a></p>