[asterisk-users] fast busy out?

2010-09-04 Thread Thomas Perron
why does this not work? i simply want to hear the recorded message exten = s,1,Answer() ;exten = s,n,Record(zipcodegutter1.gsm) ;zcg1 exten = s,n,Playback(zipcodegutter1) exten = s,n,Dial(SIP/c01s/159,120,A,(demo-thanks)) --

Re: [asterisk-users] fast busy out?

2010-09-04 Thread Ondrej Škopek
I assume thtat you've already recorded the message, and the out commented the Record app.. try adding .gsm to the playback, to ensure that * doesn't look for other formats.. and according to http://www.voip-info.org/wiki/index.php?page=Asterisk+cmd+Record you should use file:format in the Record

Re: [asterisk-users] fast busy out?

2010-09-04 Thread Ondrej Škopek
* then 2010/9/4 Ondrej Škopek skopekond...@gmail.com I assume thtat you've already recorded the message, and the out commented the Record app.. try adding .gsm to the playback, to ensure that * doesn't look for other formats.. and according to

Re: [asterisk-users] fast busy out?

2010-09-04 Thread Anton Raharja
On 09/04/2010 08:40 PM, Thomas Perron wrote: why does this not work? i simply want to hear the recorded message exten = s,1,Answer() ;exten = s,n,Record(zipcodegutter1.gsm) ;zcg1 exten = s,n,Playback(zipcodegutter1) exten =

Re: [asterisk-users] fast busy out?

2010-09-04 Thread Ondrej Škopek
no I am not sorry, and please reply to this list, and not to me directly.. On Sat, Sep 4, 2010 at 6:16 PM, Thomas Perron thomas.per...@gmail.comwrote: thank you for your note on the Asterisk users group list Are you in Scandanavia somewhere? Cheers Tom -- -- Ondrej Škopek --

Re: [asterisk-users] fast busy out?

2010-09-04 Thread Thomas Perron
Thank for your the tip Ondrej. Here is what worked on my CentOS box. exten = s,1,Answer() exten = s,n,Wait(2) exten = s,n,Record(zipcodegutter%d:gsm) exten = s,n,Wait(2) exten = s,n,Playback(${RECORDED_FILE}) exten = s,n,Wait(2) exten = s,n,Hangup() 2010/9/4 Ondrej Škopek