Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] Max Number of files sent to session.execu


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
francisco.gastiazoro a...
Guest





PostPosted: Tue Nov 11, 2008 3:56 pm    Post subject: [Freeswitch-users] Max Number of files sent to session.execu Reply with quote

Hi Guys,

I have this problem when i'm trying to reproduce more than 8 prompts in a
row.
Here is code extract that simplifies the problem i'm having.

If put something like this inside a script.py

session.execute("playback","1.wav")
session.execute("playback","2.wav")
session.execute("playback","3.wav")
session.execute("playback","4.wav")
session.execute("playback","5.wav")
session.execute("playback","6.wav")
session.execute("playback","7.wav")
session.execute("playback","8.wav")
session.execute("playback","9.wav")

The file 9.wav is not heard even though in the freeswitch.log it says that
the file was sent to the module

2008-11-11 18:53:03 [DEBUG] switch_cpp.cpp:570 execute()
CoreSession::execute. app: playback data:9.wav
2008-11-11 18:53:03 [DEBUG] switch_ivr_play_say.c:912 switch_ivr_play_file()
Codec Activated L16@8000hz 1 channels 20ms
2008-11-11 18:53:03 [DEBUG] switch_core_session.c:430
switch_core_session_receive_message() Kill
sofia/internal/221122@201.216.201.133 [BREAK]
2008-11-11 18:53:03 [INFO] switch_rtp.c:1253 rtp_common_read() Auto Changing
port from 201.216.201.135:8000 to 201.216.201.133:18648
2008-11-11 18:53:03 [DEBUG] switch_ivr_play_say.c:1203
switch_ivr_play_file() done playing file

So do you have an idea why after the prompt number 8 the rest are not heard?

I will thank any helps on this

--
View this message in context: http://www.nabble.com/Max-Number-of-files-sent-to-session.execute%28%22playback%22%2Cfile%29-tp20448136p20448136.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
dave at 3c.co.uk
Guest





PostPosted: Wed Nov 12, 2008 1:35 am    Post subject: [Freeswitch-users] Max Number of files sent to session.execu Reply with quote

Hi -

At a guess, this is the problem:

2008-11-11 18:53:03 [INFO] switch_rtp.c:1253 rtp_common_read() Auto Changing
port from 201.216.201.135:8000 to 201.216.201.133:18648

- FS has some "help cope with NAT" code which sends RTP back to where it
came from,
rather than where it's been negotiated to be coming from. This was
troublesome for us a
few weeks ago but is now fixed; if you're using a revision of FS that's
more than a couple
of weeks old, you might want to upgrade to the latest.

Cheers --

Dave
Quote:
Hi Guys,

I have this problem when i'm trying to reproduce more than 8 prompts in a
row.
Here is code extract that simplifies the problem i'm having.

If put something like this inside a script.py

session.execute("playback","1.wav")
session.execute("playback","2.wav")
session.execute("playback","3.wav")
session.execute("playback","4.wav")
session.execute("playback","5.wav")
session.execute("playback","6.wav")
session.execute("playback","7.wav")
session.execute("playback","8.wav")
session.execute("playback","9.wav")

The file 9.wav is not heard even though in the freeswitch.log it says that
the file was sent to the module

2008-11-11 18:53:03 [DEBUG] switch_cpp.cpp:570 execute()
CoreSession::execute. app: playback data:9.wav
2008-11-11 18:53:03 [DEBUG] switch_ivr_play_say.c:912 switch_ivr_play_file()
Codec Activated L16@8000hz 1 channels 20ms
2008-11-11 18:53:03 [DEBUG] switch_core_session.c:430
switch_core_session_receive_message() Kill
sofia/internal/221122@201.216.201.133 [BREAK]
2008-11-11 18:53:03 [INFO] switch_rtp.c:1253 rtp_common_read() Auto Changing
port from 201.216.201.135:8000 to 201.216.201.133:18648
2008-11-11 18:53:03 [DEBUG] switch_ivr_play_say.c:1203
switch_ivr_play_file() done playing file

So do you have an idea why after the prompt number 8 the rest are not heard?

I will thank any helps on this




--
David Knell, Director, 3C Limited
T: 020 8114 8901 F: 020 3002 7257 M: 001 415 630 3031
http://www.3c.co.uk


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
francisco.gastiazoro a...
Guest





PostPosted: Wed Nov 12, 2008 8:50 am    Post subject: [Freeswitch-users] Max Number of files sent to session.execu Reply with quote

Like 4 weeks ago i installed the freeswitch from the official site.
i tried a couple of mod.fsv.c and all fail to compile. do you have a
recommendation where to download the latest mod_fsv ?

Thanks



Hi -

At a guess, this is the problem:

2008-11-11 18:53:03 [INFO] switch_rtp.c:1253 rtp_common_read() Auto Changing
port from 201.216.201.135:8000 to 201.216.201.133:18648

- FS has some "help cope with NAT" code which sends RTP back to where it
came from,
rather than where it's been negotiated to be coming from. This was
troublesome for us a
few weeks ago but is now fixed; if you're using a revision of FS that's
more than a couple
of weeks old, you might want to upgrade to the latest.

Cheers --

Dave

--
View this message in context: http://www.nabble.com/Max-Number-of-files-sent-to-session.execute%28%22playback%22%2Cfile%29-tp20448136p20460485.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
mike at jerris.com
Guest





PostPosted: Wed Nov 12, 2008 9:29 am    Post subject: [Freeswitch-users] Max Number of files sent to session.execu Reply with quote

http://wiki.freeswitch.org/wiki/Installation_Guide

You can try from svn.

Mike

On Nov 12, 2008, at 8:37 AM, fgastiaz wrote:

Quote:

Like 4 weeks ago i installed the freeswitch from the official site.
i tried a couple of mod.fsv.c and all fail to compile. do you have a
recommendation where to download the latest mod_fsv ?

Thanks


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services