Hi all, I would like to have my html video play in full screen mode
when clicked and return to the application after the video is
completed, or the user pushes "back' or "done". I am creating an app
and running into an issue with my PhoneGap compiled android app not
playing html5 video files. The issue seems to be in the tied to the
"type='video/mp4'" tag.
If I use the following tag...
<video id="example_video_1" poster="pages/test.png"
width="120" height="80" onclick="
this.play();">
<source src="
http://savannahchristian.com/mobile/pages/
android.mp4" />
</video>
It does NOT include the type tag in my video tag it functions properly
viewing it on the web. However it does NOT work properly within the
compiled android app on the device OR the android emulator. Loading
the video tag in the android emulator or compiled on an actual android
device causes the app to crash.
On the flip side if I include the "type" and use the following tag....
<video id="example_video_1" poster="pages/test.png"
width="120" height="80" onclick="
this.play();">
<source src="
http://savannahchristian.com/mobile/
pages/android.mp4" type="video/mp4" />
</video>
It does NOT play in either the web app or the compiled android app, I
however do not have issues with the compiled app crashing.
I have been working on this issue for a few days and hope that i can
get it resolved shortly I am using PhoneGap 0.9.4 and vanilla html5.
If i could get any guidance or direction I would greatly appreciate
it.