Play video on AVD using a phone call

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.

+5
source share
1 answer

I'm sure I answered this earlier, but somehow, the video tag is broken in most, if not all versions of Android. Go to these issues:

http://code.google.com/p/android/issues/detail?id=22254 and http://code.google.com/p/android/issues/detail?id=8272

@$$, , Android .

http://simonmacdonald.blogspot.com/2011/11/video-player-plugin-for-phonegap.html

+1

All Articles