Question

I've been fooling around with this for so long and I can't seem to figure out what's wrong. Everyone says to use the HTML5 video tag for phonegap if you're in iOS, but I keep getting the broken video tag when I launch my app in iOS. It works fine on the web, but not in iOS. Here is my code:

<video id='player' controls src="videos/sample-video.mp4"></video>

I'm starting to think that this doesn't work because of the new version of phonegap. I'm using version 3.0.0-0.14.1

Was it helpful?

Solution 2

ok i fixed my own issue. the video codec was H.264 and I guess that's unsupported so I got a video with lower quality and it works

OTHER TIPS

Try this instead

<video id="yourid" width="1024" height="768" controls>
      <source src="yoursource.mp4" type="video/mp4">
</video>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top