MIX Online has released a major update to the Gestalt project. Gestalt has now been incorporated directly into the Dynamic Language Runtime (DLR).

 Joshua Allen writes: Included ... are our sample video and audio widgets, which come with the Gestalt Widgets pack.  By adding a <script> tag to the top of your HTML file, you can automatically enable use of HTML5-compatible video and audio tag syntax:

<html>  
  <head>   
    <script type="text/javascript"
      src="http://mschnlnine.vo.llnwd.net/d1/dlr-20091120.js"></script>   
    <script type="text/javascript"
      src="http://mschnlnine.vo.llnwd.net/dlr/dlrmedia.js"></script> 
  </head> 
  <body>   
    <audio autoplay="false">
<source src="foo.mp3" type="audio/mp3"></source>
</audio> 
  </body>
</html>