<!-- Copyright: Copyright 1998-2005 W3C (MIT, ERCIM, Keio), All Rights Reserved. See http://www.w3.org/Consortium/Legal/. Author: Muriel Jourdan (Muriel.Jourdan@ERCIMlpes.fr) Version: Feb 21th, 2000, v1 Module: SMIL Timing & Sync Module Feature: Fill = remove on a seq node File Name: Fill_remove_on_seq4.smil Media Components: 2 JPG, 1MPG Expected Behavior: image1 is shown for 9s, at t=4s the video is played for 5s, then a blank for 4s, then image2 is shown for 3s --> <smil xmlns="http://www.w3.org/2005/SMIL21/Language"> <body> <seq> <seq fill ="remove"> <img src="../images/frown.jpg" id="image1" dur ="4s" fill="hold"/> <video src="../videos/nist.mpg" id="video" dur ="5s" /> </seq> <img src="../images/smile.jpg" begin ="4s" dur ="3s" id="image2" /> </seq> </body> </smil>