I am embedding mediaplayer in webview using HTML5.
<p>
<img alt="" src="image7_jpg.jpg" style="height:262px; width:350px" />
test video<object width="160" height="144"><param name="autoplay" value="false">
<embed src="videoSample.3gp" width="160" height="144" autoplay="false"
controller="false"> </embed></p>
The above is my html5
, but when i load, mediaplayer was not get embed.
I got some suggestion from Google, it says,we need to include<audio/video>
tag for to embed the multimedia file in html5
for android.
I must to include the audio/video
tag or the above html itself can work.
Please help me out. Thanks in advance.