Mmscomp and making mms from smil

Mmscomp and making mms from smil SearchSearch
Author Message
steve
Unregistered guest
Posted on Tuesday, January 17, 2006 - 03:26 pm:   

Hi

This is a newbie question - so some of you will surely groan. Anyway, I am trying to turn a simple smil file into an mms file. I do this, it plays ok on the Nokia Multimedia Player as a SMIL file. But then I mmscomp it to turn it into an mms message, but when I try to play that on the Nokia Multimedia Player, it hangs on the first <par> and doesnt get beyond that. Here is the SMIL

----------------------------
<?xml version="1.0" encoding="UTF-8"?>
<smil>
<head>
<layout>
<root-layout width="176" height="208"/>
<region id="main" top="0%" left="0" height="100%" width="100%" fit="meet"/>
</layout>
</head>
<body>
<seq>
<par id="slide_1">
<img src="slide_1.jpg" region="main" />
<audio begin="0s" src="slide_1.amr" restart="always"/>
</par>
<par id="slide_2">
<img src="slide_2.jpg" region="main" />
<audio begin="0s" src="slide_2.amr" restart="always"/>
</par>
<par id="slide_3">
<img src="slide_3.jpg" region="main" />
<audio begin="0s" src="slide_3.amr" restart="always"/>
</par>
<par id="slide_4">
<img src="slide_4.jpg" region="main" />
<audio begin="0s" src="slide_4.amr" restart="always"/>
</par>
<par id="slide_5">
<img src="slide_5.jpg" region="main" />
<audio begin="0s" src="slide_5.amr" restart="always"/>
</par>
</seq>
</body>
</smil>
----------------------------
Here is the header (a.hdr) file
----------------------------
X-Mms-Message-Type: m-retrieve-conf
From: user@corp
Subject: A Presentation
Content-type: application/vnd.wap.multipart.related
----------------------------
and the commandline is

mmscomp a.hdr mms.smil

-------------------------------------

However, it never gets past slide 1. If anyone could help I'd really appreciate it.

STeve
Darien Jesus Alvarez de la Cruz
New member
Username: Darien

Post Number: 5
Registered: 12-2005
Posted on Tuesday, January 31, 2006 - 08:22 pm:   

Hello Steve:

You may have the parameter dur="10s" in all the tags i mean

<par id="slide_1">
<img src="slide_1.jpg" region="main" dur="10s"/>
<audio begin="0s" src="slide_1.amr" restart="always"/>
</par>

You can change the time try it and good look!!
Anonymous
 
Posted on Monday, March 06, 2006 - 07:06 pm:   

deleted by admin 966