update 1
i dont know much about but what i am trying to do is to play the video on both andriod/iphone through html5 as others have stated that i have to use tag in order to do that...
end update 1
updated: here is the code on my html page:
<video width="320" height="240" controls="controls">
<source src="movie.ogg" type="video/ogg" />
<source src="movie.mp4" type="video/mp4" />
<source src="movie.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
end update:
here is my code and don't seem its working for android and i am targeting android/iPhone devices. any help?
<noscript>
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3423ABDDC63" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="http://hostname/images/Large.jpg" />
<param name="href" value="http://hostname/mobile/videos/green.mp4" />
<param name="target" value="myself" />
<param name="controller" value="false" />
<param name="autoplay" value="false" />
<param name="scale" value="aspect" />
<embed type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" src="http://hostname/mobile/videos/green.jpg" href="http://hostname/mobile/videos/green.mp4" target="myself" controller="false" autoplay="false" scale="aspect" />
</object>
</noscript>