View Single Post
  #3  
Old 10-21-2008, 08:18 AM
EWT EWT is offline
Junior Member
 
Join Date: Oct 2008
Posts: 3
EWT is on a distinguished road
Default

Re: What is the best way to Convert smil (real media) files?


SR,

I purchased the copyrighted material and downloaded it over the internet, but I don't have a link where you can download it for free. One set of files is roughly 18-20 MB total. The slides are less than 1 MB, so the .rm audio file is 95% of this total . Here is the structure of the .smil file:

Code:
<smil>
	<head>
		<meta name="title" content="Study Material" />
		<meta name="author" content="John Smith" />
		<meta name="copyright" content="© 2005" />
		<layout type="text/smil-basic-layout">
			<root-layout width="720" height="540" background-color="black"/>
			<region id="pix_region" left="0" top="0" width="720" height="540" z-index="1" />
		</layout>
		</head>
	<body>
		<par>
		
			<img src="images/Study_01.rp" region="pix_region" fill="freeze"/>
		     <audio src="images/Study_01.rm"/>
		</par>
	</body>
</smil>
Here is the structure of the .rp file:

Code:
<imfl>
	<head
	  title="Study Material"
	  copyright="©"
	  timeformat="dd:hh:mm:ss.xyz"
	  duration="75:25.0"
	  bitrate="150000"
	  width="720"
	  height="540"
	  preroll="10.0"
	/>

  <!-- Assign handle numbers to images -->
<image handle="1" name="Slide001.jpg" size="777" mime="image/jpg"/>
<image handle="2" name="Slide002.jpg" size="777" mime="image/jpg"/>
<image handle="3" name="Slide003.jpg" size="777" mime="image/jpg"/>
<image handle="4" name="Slide004.jpg" size="777" mime="image/jpg"/>
<image handle="5" name="Slide005.jpg" size="777" mime="image/jpg"/>
 <!-- These effects define the timeline of the presentation -->
 <crossfade start="0:00.0" duration="1.0" target="1" dstx="0" dsty="0" dstw="720" dsth="540" aspect="true" />
<crossfade start="0:24.0" duration="1.0" target="2" dstx="0" dsty="0" dstw="720" dsth="540" aspect="true" />
<crossfade start="0:41.0" duration="1.0" target="3" dstx="0" dsty="0" dstw="720" dsth="540" aspect="true" />
<crossfade start="0:51.0" duration="1.0" target="4" dstx="0" dsty="0" dstw="720" dsth="540" aspect="true" />
<crossfade start="1:07.0" duration="1.0" target="5" dstx="0" dsty="0" dstw="720" dsth="540" aspect="true" />
</imfl>
If you had a set of files, you could experiment, but this forum doesn't seem to allow attachments. It's too big to email, and I am kind of out of options. Any suggestions?

Thanx.
Reply With Quote