I am developing an Android App. I want to play video using HTML5 <video>
tag. The tag works fine on browsers but the video doesn't play on emulator. Here is my code:
<video id="player" type="text/html" width="350" height="350">
<source src="media/v2.mp4"></source>
</video>
I also tried using <iframe>
as follows
<iframe src="media/v2.mp4" width="400px" height="400px"></iframe>
But both do not work. Please help me fix this. I am using Cordova 2.6.0.