Howdy, folks. I'm having a problem finding a way to auto-record calls (both incoming and outgoing). I know how to make it so either party can initiate recording, but I want it done as soon as both ends are connected (or prior to that if that's what it takes). It's probably right in front of me and I'm just missing it. Any help would be much appreciated. Thanks, Jay
you may simply be looking for the monitor() command: http://www.voip-info.org/wiki-Asterisk+cmd+monitor -tcl. On Mon, 20 Nov 2006, Jay Moore wrote:> Howdy, folks. > > I'm having a problem finding a way to auto-record calls (both incoming and > outgoing). I know how to make it so either party can initiate recording, but > I want it done as soon as both ends are connected (or prior to that if that's > what it takes). It's probably right in front of me and I'm just missing it. > Any help would be much appreciated. > > Thanks, > Jay > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > >
At 13:52 11/20/2006, Jay Moore wrote: >Howdy, folks. > >I'm having a problem finding a way to auto-record calls (both incoming >and outgoing). I know how to make it so either party can initiate >recording, Pray tell, how did you do that? but I want it done as soon as both ends are connected (or >prior to that if that's what it takes). It's probably right in front >of me and I'm just missing it. Any help would be much appreciated. > >Thanks, >Jay >_______________________________________________ >--Bandwidth and Colocation provided by Easynews.com -- > >asterisk-users mailing list >To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20061120/ec796daa/attachment.htm
This is what I use: Inbound Calls: [from-pstn] exten=>s,1,Answer exten=>s,2,Wait(2) exten=>s,3,SetVar(CALLFILENAME=${CALLERIDNUM}:${TIMESTAMP}) exten=>s,4,Monitor(gsm,/var/spool/asterisk/monitor/${CALLFILENAME},m) exten=>s,5,Dial(SIP/1001,20,r) exten=>s,6,DigitTimeout(30) exten=>s,7,Background(ivr) ...etc. etc... Outbound Calls: [trunkdial] exten=>_NXX.,1,SetVar(CALLFILENAME=${EXTEN}-${TIMESTAMP}) exten=>_NXX.,2,Monitor(gsm,/var/spool/asterisk/monitor/${CALLFILENAME},m) exten=>_NXX.,3,Set(CALLERID(num)=2122026659) exten=>_NXX.,4,Dial(IAX2/${VOICEPULSE_GATEWAY_OUT_A}/1${EXTEN}) exten=>_NXX.,5,GotoIf($[${DIALSTATUS}=CHANUNAVAIL]?${EXTEN}|500) exten=>_NXX.,500,Dial(IAX2/${VOICEPULSE_GATEWAY_OUT_B}/1${EXTEN}) ...etc...etc... ________________________________________ From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of zero massive Sent: Monday, November 20, 2006 3:16 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Auto recording calls? I have this in my dial plan, works fine (in and out) exten => s,19,Monitor(wav,${CALLFILENAME},m) On 11/20/06, Doug < Doug@natel.net> wrote: At 14:00 11/20/2006, Doug wrote:>At 13:52 11/20/2006, Jay Moore wrote: > >Howdy, folks. > > > >I'm having a problem finding a way to auto-record calls (both incoming > >and outgoing).??I know how to make it so either party can initiate > >recording, > >Pray tell, how did you do that?Date: Mon, 20 Nov 2006 14:01:44 -0600 From: Jay Moore <jaymoore@accu-com.com> User-Agent: Thunderbird 1.5.0.8 (Windows/20061025) MIME-Version: 1.0 To: Doug <Doug@NaTel.net> Subject: Re: [asterisk-users] Auto recording calls? References: < 45620776.50207@accu-com.com> <1048069656-272813954@mail1.natel.net> In-Reply-To: <1048069656-272813954@mail1.natel.net > Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - web.accu-com.com X-AntiAbuse: Original Domain - natel.net X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - accu-com.com X-Source: X-Source-Args: X-Source-Dir: The w or W flags in the Dial() command. http://www.voip-info.org/wiki/view/Asterisk+cmd+Dial Thank you Jay for this info. _______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: ?? http://lists.digium.com/mailman/listinfo/asterisk-users
Tim Panton wrote:> > On 20 Nov 2006, at 21:46, Jay Moore wrote: > >> Doug wrote: >>> Hmmm. I think this may work for WinAmp and >>> incidently for Windows Media Player: >>> http://www.mlkj.net/gsm/ >> >> No luck with WMP. Anyone else have any suggestions on playing .gsm >> files in Windows Media Player? > > Jay, would you be interested in a java applet that played gsm files ? > I think I have the bones of one kicking around that I could dust off > and polish up. > > This only really works if you are providing your customers access to the > gsm files > via http and can easily wrap a page around them... >Well, ideally I'd like for my customers to be able to download the file and play it on their computer, but a Java applet that plays them on our website would be a cool idea, too. So, yeah, I'd be interested. I'm still looking for some way to play .gsm files on Windows Media Player, however, so if anyone can help me out with that, I'd really appreciate it. Jay