<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<pre>&gt;&gt;<i> 
</i>&gt;<i>&gt; Thanks for the advice.
</i>&gt;<i>&gt; I follow you and know what to do up to the point of 'run the conversion'
</i>&gt;<i>&gt; The conversion is performed by means of a script.
</i>&gt;<i>&gt; Can one invoke a script from an extension? And how?
</i>
&gt;show application system
&gt;show application trysystem

&gt;They allow you to invoke an arbitrary command via the shell from the dialplan.

Thanks the System application works.

But I'm stuck before executing the script. I know this thread is suppose to be on the user list, but bare with me please.
</pre>
I'm following Kevin Flemming's advice:<br>
<pre>&gt;<i>Let's see... set a channel variable in the dialplan before going into MeetMe, then in the context where 
</i>&gt;<i>MeetMe was executed add an 'h' extension. In that extension, check for the magic channel variable, 
</i>&gt;<i>then use MEETME_COUNT() to see if any users are left in the MeetMe and if not, run the conversion.</i></pre>
My dialplan looks as follows, the user dials in and are prompt for
meetme room and pin number:<br>
<br>
exten =&gt; s,1,MeetMe(${ROOM},rsxA,${PIN})<br>
<br>
When a meetme user hangs up/been kicked then we count the number of
participants in the conference and based on that we execute the
extension which executes the System(lame-script) application.<br>
<br>
exten =&gt; h,1,MeetMeCount(${ROOM}|countvar)<br>
exten =&gt; h,2,GotoIf($[${ROOM} != "" &amp; ${countvar} = 0]?5010:5011)<br>
<br>
The problem is that the ${ROOM} varaible is empty by the time we get to
h,1.<br>
I have read somewhere that some channel varaibles are destroyed and you
have to watch out for this when using the h extension.<br>
<br>
What know? I'm I going the right way?<br>
<br>
Thanks for all the help.<br>
<br>
</body>
</html>