I'm thinking about the fact that the higher the MP4 profile we go, the better the video quality gets...
This brings me to a question I thought I'd ask the experts!
Can a HTML 5 video tag have multiple MP4 sources with different codecs? Something like:
<video>
<source src="video.webm" type='video/webm; codecs="vp8, vorbis"' />
<source src="high.mp4" type='video/mp4; codecs="avc1.64001E, mp4a.40.2"' />
<source src="main.mp4" type='video/mp4; codecs="avc1.4D401E, mp4a.40.2"' />
<source src="baseline.mp4" type='video/mp4; codecs="avc1.58A01E, mp4a.40.2"' />
</video>
The first MP4 video being a high profile video, the second main profile, and the third baseline profile.
On an iPhone 3G, will the baseline one be played?
On an iPhone 4S, will the high one be played instead?
A follow up question: if the high profile video is below the baseline profile video in the source list, which one will play on an iPhone 4G?
(Thanks for reading and especially if you reply. :)