Video element for XHTML MP - WAP2 Phones -
Video element for XHTML MP - WAP2 Phones -
i trying develop xhtml mp website supporting wap2 browsers.
video elememt in html5 not working , tried object element. both of them not supported . tried play in nokia 220 phone. nil coming.
sample code used
<video controls="controls" poster="" width="200" height="200"> <source src="video/small.mp4" type="video/mp4" /> <object type="application/x-shockwave-flash" data="http://flashfox.googlecode.com/svn/trunk/flashfox.swf" id="video-elemnt" > <param name="movie" value="http://flashfox.googlecode.com/svn/trunk/flashfox.swf" /> <param name="allowfullscreen" value="true" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="controls=true&poster=&src=video/small.3gp" /> <img alt="" src="video/small.mp4" width="250" height="200" title="no video playback capabilities, please download video below" /> </object> </video>
i tried object method - sample code
<object type="application/x-shockwave-flash" data="http://flashfox.googlecode.com/svn/trunk/flashfox.swf" width="200" height="200"> <param name="movie" value="http://flashfox.googlecode.com/svn/trunk/flashfox.swf" /> <param name="allowfullscreen" value="true" /> <param name="wmode" value="transparent" /> <param name="flashvars" value="controls=true&poster=&src=video/small.mp4" /> <img alt="" src="video/small.mp4" id="video-elemnt" title="no video playback capabilities, please download video below" /> </object>
can please help this. element should utilize playing video in wap2 browser.
video xhtml wap
Comments
Post a Comment