Does soxmix works with asterisk ver. 0.9? I have ver. sox-12.17.5 on Gentoo but the option "m" does not combine two WAV files (In and Out) into one file. I have two separate files in /monitor folder. exten => 711,1,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP}) exten => 711,2,Monitor(wav,${CALLFILENAME},m) exten => 711,3,Dial(${sales_support},20,r) exten => 711,4,Voicemail(u11) ; Right to voicemail exten => 711,5,Hangup() -- #Joseph
You may want to try calling StopMonitor to see if that forces a merge. I've used Monitor before on Gentoo and it works with soxmix but I've never tried to do it without an explicit StopMonitor. On Sun, 2004-11-28 at 15:36 -0700, Joseph wrote:> Does soxmix works with asterisk ver. 0.9? > > I have ver. sox-12.17.5 on Gentoo but the option "m" does not combine > two WAV files (In and Out) into one file. I have two separate files > in /monitor folder. > > exten => 711,1,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP}) > exten => 711,2,Monitor(wav,${CALLFILENAME},m) > exten => 711,3,Dial(${sales_support},20,r) > exten => 711,4,Voicemail(u11) ; Right to voicemail > exten => 711,5,Hangup() >
Joseph wrote:>Does soxmix works with asterisk ver. 0.9? > >I have ver. sox-12.17.5 on Gentoo but the option "m" does not combine >two WAV files (In and Out) into one file. I have two separate files >in /monitor folder. > >exten => 711,1,SetVar(CALLFILENAME=${EXTEN:1}-${TIMESTAMP}) >exten => 711,2,Monitor(wav,${CALLFILENAME},m) >exten => 711,3,Dial(${sales_support},20,r) >exten => 711,4,Voicemail(u11) ; Right to voicemail >exten => 711,5,Hangup() > > >I belive you need 1.0 for the "m" option to work.
On Sun, 2004-11-28 at 18:11 -0500, Dave DeChellis wrote:> Joseph wrote: > > >Does soxmix works with asterisk ver. 0.9? > >[snip]> > > I belive you need 1.0 for the "m" option to work. >That was my initial impression. So need to pull few unstable packages from portage to compile 1.0.1 or 1.0.2 -- #Joseph