Does swf file play in browser like google chrome, firefox 3.6, opera using html5?
Internet explorer played by using the fall back code (object code )
Below is code to play swf file .... which is not working for other browsers
<video width="550" controls autoplay>
<source src="file.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="file.webm" type='video/webm; codecs="vp8, vorbis"'>
<source src="file.ogv" type='video/ogg; codecs="theora, vorbis"'>
<object type="application/x-shockwave-flash" data="slide.swf">
<param name="movie" value="slide.swf"/>
</object>
</video>
Please help...Thanks