<!-- 
            Copyright: Copyright 1998-2001 W3C (MIT, INRIA, Keio), All Rights Reserved.
See http://www.w3.org/Consortium/Legal/.
Author: Debbie Newman, Microsoft
           Version: Mar. 14, 2001, v1
            Module: Basic Transitions and animateMotion
           Feature: transIn with animation
         File Name: transInanimateMotion.smil
  Media Components: 2 MPG (nist.mpg dur="5.6s"; coffee.mpg dur="10s")
 Expected Behavior: nist.mpg begins playing at 0s.
                    At 2s coffee.mpg transitions in for 5 seconds and
                        the animateMotion is applied to it for 5s.
                    At 7s coffee.mpg stops moving.
                    At 10s coffee.mpg ends.
-->
<smil xmlns="http://www.w3.org/2001/SMIL20/Language">
<head>
<layout type="text/smil-basic-layout">
   <root-layout width="500" height="200" />
   <region id="region1" width="500" height="200" background-color="white" />
</layout>
<transition id="trans1" type="barWipe" dur="5" />
</head>
<body>
   <par>
      <video id="m1" src="videos/nist.mpg" dur="5" region="region1" fill="transition" />
      <video id="m2" src="videos/coffee.mpg" begin="2" end="10" transIn="trans1" fill="transition" region="region1" />
      <animateMotion begin="m2.begin" targetElement="m2" dur="5" from="0,0" to="50,50" />
   </par>
</body>
</smil>