I'm just making video on my site HTML5 compliant for portable iOS devices and one thing I'm running into is that I would like to have the client browser try the Flash player first because it's more customizable and if Flash is unavailable, try HTML5.
I had thought that maybe the order in the video tag would do it but it always goes to HTML5 regardless of the order of the tags.
For example:
<video width="640" height="360" controls>
<object width="640" height="360"><embed src="flashplayer.swf?movie=movie.mp4" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="360"></embed></object>
<source src="/video/ogg/movie.ogg" type="video/ogg">
<source src="/video/mp4/movie.mp4" type="video/mp4">
</video>
Any help would be appreciated, thanks.