Stream: SMIL
File Name: cc_video_start.smi
Last Modified: Tue, 24 Nov 1998 02:46:08 GMT
File Size: 1 KB
SMIL source:

<smil>
	<head>
		<meta name="title" content="CC Video Template" />
		<meta name="author" content="RealNetworks, Inc." />
		<meta name="copyright" content="(c) 1998" />
		<layout>
			<!-- The root-layout sets the height and width of the entire presentation
				in pixels.  Each region sets specific areas in the presentation
				that media will play to -->
			<root-layout width="176" height="176" />
			<region id="video_region" width="176" height="144" left="0" top="0" />
			<region id="text_region" width="176" height="32" left="0" top="144" />
		</layout>
	</head>
	<body>
		<!-- Each line between the <par></par> tags is a media file which will play to a
			specified region.  The <par> tags mean that they will play at the same
			time (in parallel).  Fill="freeze" means that the final frame will stay
			visible when that media file is done.  -->
		<par>
			<textstream src="text/text.rt" region="text_region" fill="freeze" />
			<video src="video/video.rm" region="video_region" fill="freeze" />
		</par>
	</body>
</smil>