I have a phonegap application targeting iPad that needs to embed a video on one of its pages. I've found forum posts and other help claiming this is possible using the video tag from HTML5. Here's the code I'm using:
<video id="video01" width="770" height="433" controls="controls" preload="auto" poster="splash.png">
<source src="movies/myVideo.mp4" type="video/mp4" />
</video>
This code snippet works great in Safari, but when loaded via Phonegap onto the iPad shows the splash image with a crossed-over play button (like the video didn't load right).
Perhaps is there a nuance with playing video on iOS I'm not aware of? Or is there a small formatting issue for the video itself. The video was formatted as h264 wrapped in a mp4 container.