<div dir="ltr">On Tue, Oct 14, 2008 at 12:10 PM, Ian Hickson <span dir="ltr"><ian@hixie.ch></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Try to play all the videos you have available, and catch errors:<br>
<br>
  <video id=a><br>
   <source src="video.mp4" type="video/mp4; codecs=&quot;avc1.42E01E, mp4a.40.2&quot;"><br>
   <source src="video.3gp" type="video/3gpp; codecs=&quot;mp4v.20.8, samr&quot;"><br>
   <source src="video.ogv" type="video/ogg; codecs=&quot;theora, vorbis&quot;"><br>
   <source src="video.mkv" type="video/x-matroska; codecs=&quot;theora, vorbis&quot;"><br>
  </video><br>
  <script><br>
   document.getElementById('a').load();<br>
   if (document.getElementById('a').currentSrc == "") {<br>
     // failed to find a video that would play<br>
     // do whatever fallback you want to do here<br>
     ...<br>
   }<br>
  </script><br>
<br>
This will reliably work, because load() blocks until a decision about<br>
which video to play is made. <br>
<br>
We may have to change this (e.g. to allow UAs to asynchronously fetch and<br>
try each video)</blockquote><div><br>We definitely have to change that! Having load() synchronous would be a disaster.<br><br>Rob<br></div></div>--<br>"He was pierced for our transgressions, he was crushed for our iniquities; the punishment that brought us peace was upon him, and by his wounds we are healed. We all, like sheep, have gone astray, each of us has turned to his own way; and the LORD has laid on him the iniquity of us all." [Isaiah 53:5-6]<br>

</div>