We have an ASP.NET 4 website that displays flash files. It has come to our attention that these are not fully supported on HTML5, and that they will not play on HTML5 platforms such as the iPad.
So, in order to support such platforms, my thinking is that we need to try and display the video using the HTML5 <video> tag if the browser supports HTML5, or fall back to flash if it does not.
However, it would seem that this requires our site to provide two video formats (flash format and video such as MP4). That presents problems because A), we need to store multiple video formats on the site, and B) our existing flash data will no longer work.
Can anyone recommend information about the best way to support as many platforms as possible. And is there any way to do so without having to support multiple video formats?