Paul Mahler
2004-Feb-26 14:52 UTC
[Asterisk-Users] record application in extensions.conf -- how to stop recording?
With record: ; Record voice file to /tmp directory exten => 9000,1,Record(/tmp/asterisk-recording:gsm) exten => 9000,2,Hangup Is there a way to stop recording other than hanging up? Thanks! Paul Paul Mahler mail:pmahler@signate.com phone: 650.207.9855 fax: 877.408.0105 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040226/1197976f/attachment.htm
info-lists@robertc.de
2004-Feb-26 14:59 UTC
[Asterisk-Users] record application in extensions.conf -- how to stop recording?
Paul Mahler said:> With record: > > > > ; Record voice file to /tmp directory > > exten => 9000,1,Record(/tmp/asterisk-recording:gsm) > > exten => 9000,2,Hangup > > > > Is there a way to stop recording other than hanging up? > > > > Thanks!Press the # key. Below is from my extensions.conf. It plays the recording back after the # key is pressed. the prty 6 hangs up the call from the Asterisk side. Has nothing to do with what you do on the callING side. (as far as I know). ; Record a temp. GSM file exten => 100,1,Wait(2) exten => 100,2,Record(/tmp/asterisk-recording:gsm) exten => 100,3,Wait(2) exten => 100,4,Playback(/tmp/asterisk-recording) exten => 100,5,Wait(2) exten => 100,6,Hangup Robert