<!-- 
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Aaron Cohen (Intel)
           Version: January 29, 2001, v2
            Module: Content Control Module
           Feature: prefetch
         File Name: prefetch1.smil
  Media Components: 1 JPG, 1 MPG
 Expected Behavior: Show the smile.jpg image until the prefetch element ends and then
                    show 5s of the video clip. The user agent is not required to actually
                    prefetch and cache the video clip.
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
    <body>
        <par>
            <prefetch id="fido" src="../videos/nist.mpg" clipBegin="0s" clipEnd="10s" mediaSize="80%" mediaTime="5s" bandwidth="100%"/>
            <seq>
                <img src="../images/smile.jpg" end="fido.end"/>
                <video src="../videos/nist.mpg" dur="5s"/> 
            </seq>
        </par>
    </body>
</smil>