Re: [Freeswitch-users] Problem while playing more than 10 voice files using playback

2009-11-24 Thread Anthony Minessale
1) Did you ever supply a log of your problem? 2) Are you using ESL lib or did you make your own event socket client, (if you did maybe you implemented the protocol client wrong) You are not supplying any specific information like traces of the connection or the version of the code you are using,

Re: [Freeswitch-users] Problem while playing more than 10 voice files using playback

2009-11-24 Thread Thangappan.M
The example script is there in the following link http://pastebin.com/f332f2fda In the previous post I have attached it. But it was not shown. 2009/11/25 Thangappan.M thangappan...@gmail.com FreeSWITCH version: freeswitch 1.0.4 I am using ESL library I attached the example Perl script

Re: [Freeswitch-users] Problem while playing more than 10 voice files using playback

2009-11-24 Thread Michael Jerris
you should use execute_complete events to tell when a command you tried to execute has finished and not poll the channel for a variable to be set because FreeSWITCH is an asynchronous application in the mode you are describing and you can never be sure of the timing. You are STILL polling for

Re: [Freeswitch-users] Problem while playing more than 10 voice files using playback

2009-11-23 Thread Thangappan.M
The reason for waiting only for DTMF event is to handle the time outs in the IVR concept like response and inter digit time out. Using our own logic we 10 voice files in each play back if the voice files are more than 10. Now it works fine. Now the new problem has been raised. The problem is we

[Freeswitch-users] Problem while playing more than 10 voice files using playback

2009-11-21 Thread Thangappan.M
Dear all, I am in the process of implementing IVR using event outbound socket (async mode). I have implemented using Perl language. I did the following steps: = Set the playback_delimiter variable = Set the playback_sleep_val

Re: [Freeswitch-users] Problem while playing more than 10 voice files using playback

2009-11-21 Thread Anthony Minessale
cant you use the execute_complete events to tell when your playback is done or var is set? On Sat, Nov 21, 2009 at 3:22 AM, Thangappan.M thangappan...@gmail.comwrote: Dear all, I am in the process of implementing IVR using event outbound socket (async mode). I have