I am trying to place an embedded video player on one of the pages of my PhoneGap application.
I am currently using the html5 video tag:
<video id="video1" height="240" width="360" controls="controls" onclick="this.play();">
<source src="/android_asset/video.mp4">
</video>
but I can’t play my video on my AVD. I also tried the videojs solution, but I could not get it to work.
Is there a way to play video on AVD using PhoneGap? Thanks to everyone.
source
share