Displaying 20 results from an estimated 400 matches similar to: "Problems with cmd monitor"
2008 Jan 14
1
Asterisk 1.4 Call Recording
I am trying to record a call into a stereo mp3 in Asterisk 1.4, but I can't seem to get it to work correct. Could someone point me to what I need to do? I have attached what I believe are the relevant parts.
[globals]
; script to be executed when monitoring has been finished
MONITOR_EXEC=/usr/local/bin/2wav2mp3
; uncomment this line if you are using Ogg Vorbis
2004 Dec 28
3
Sending call to analog then to Vmail after timeout?
I have one analog line hooked in my Asterisk box using an x100p (I think that's the model number).
When I do this in my extensions.conf:
exten => 1200,1,playback(pls-wait-connect-call)
exten => 1200,2,Dial(Zap/1/5555551212,20,rTt)
exten => 1200,3,VoiceMail(u100@lightwavetech.com)
exten => 1200,4,Goto,t|1
The phone rings beyond the 20 second timeout and never really goes to the *
2005 Sep 20
4
SUCCESS - 512 Simultaneous Calls with Digital Recording
List users,
Over the last few days we have been working with MCI's development lab
to test our Asterisk setup. We were using a piece of hardware called an
Abacus 5000 that is capable of creating and terminating thousands of SIP
calls. Initially, we could not get past 64 simultaneous digitally
recorded calls without having call quality issues including dropped
calls. We identified an
2005 Jan 19
0
MeetMe MusicOnHold Volume
I've got a simple MeetMe conference configured using Asterisk 1.0.3 on
Gentoo. I'm using zaprtc for timing from the bri-stuff package.
extensions.conf
exten => 37455,1,NoOp(Drill Squad Conference)
exten => 37455,2,Monitor(wav,drillsquad-37455,mb)
exten => 37455,3,MeetMe(37455,pMs)
Now, when I enter the conference as the first call, the MusicOnHold
plays, but it's blasting
2011 May 13
1
Asterisk 1.6: Custom Name for Recordings file
Hi,
I have latest Elastix 64 bit setup and running fine (Asterisk 1.6.2.13)
I would like to customize the file name of call recordings:
/var/spool/asterisk/monitor/20110511-110858-1305126538.912.wav
I would like to include the extension number in the file name.
Did a lot of googling but not much help.
Pls advice.
Thx
Sans
-------------- next part --------------
An HTML attachment was
2006 Apr 04
2
queueue recording and what to do next
Guys, if you define recording on queues.conf and also define a
monitor_filename var on your dialplna, you can record a queue call but,
isthere a way to do something with the file after the call ends? I need to
move the file to some other place but I cant find where to define a command
to run after a queue call finishes.
Any hints?
2013 Apr 18
5
ODBC dialplan looping problem
All,
Thank you in advance for any help.
I have a customer in need of a conferencing system. A requirement is for
users to each have their own PIN for the same bridge.
So, I put the list of users, PINs bridges into a MYSQL DB and used an ODBC
connector to parse the table.
Asterisk is connected and reads the rows as expected. The problem is that
if a user enters a PIN that is NOT in the table,
2006 Feb 10
1
2wav2mp3, monitor, mixmonitor, mpg123, queues
Hello!
I'm using Asterisk for our office telephony, but we have some problems
that still we can't resolve about it. Here they are:
1) merge in/out call recording files
I also tried to use a script I found on the internet, called 2wav2mp3
In extensions.conf I added the following lines
; script to be executed when monitoring has been finished
MONITOR_EXEC=/usr/local/bin/2wav2mp3
exten
2005 Sep 18
5
Monitor and sox mix quality
Hello All,
I am using monitor with soxmix, however the quality seems somewhat low
after sox converts to mp3.
Does anyone know a way to get a higher quality file? Some of my lines
are coming in on isdn.
Regards,
Greg
2008 Sep 16
1
how to force Asterisk 1.4 to use soxmix
Hi,
is there anybody who knows how to force Asterisk 1.4 to use soxmix
instead of sox?
Thank you.
Giorgio
2009 Aug 20
0
thanks!
Hey Matt
I wonder if it is possible that it doesn't work with AEL, does this seem ok
to you?
s => {
Ringing();
wait(2);
Answer();
Set(MONITOR_EXEC=/etc/asterisk/lameconvert.php
/var/spool/asterisk/monitor/^{MONITOR_FILENAME});
Queue(MyTestQ,ni,,,18);
Hangup();
}
I have debug
2009 Dec 18
0
DTMF doubler when using READ()
Hi there,
I have some problems when using READ() statement in the dialplan to
collect DTMF digits.
I'm using the following within my extensions.conf to receive 6 digits
exten => 9070,n,Read(CONFNO,conf-getpin,6)
So far it works! The user getting the announcement and asterisk waits
for 6 digits.
User entered "102030", but asterisk gets "102033"!!!
Executing [9070
2009 Aug 20
1
Post recording command to be executed after the end of recording
Hi all
Does anybody know where this command is supposed to go?
Set(MONITOR_EXEC=mv /var/spool/asterisk/monitor/^{MONITOR_FILENAME}
/tmp/^{MONITOR_FILENAME})
In the queues.conf file it talks about it. So I naturally thought
after I set up my monitor with
monitor-format = wav
monitor-type = MixMonitor
That I could put a lame command in there to convert and move the file
elsewhere for backup with
2004 Dec 01
2
Asterisk Call Monitor and soxmix error
Asterisk Monitor seems to be working fine. Though the problem I am
having is the two files (in & out) muxing.
I added ,m to the string, yet the call records two files still, and I
get the resulting error, at the bottom.
monitor executing ( nice -n 19 soxmix
/var/spool/asterisk/monitor/rec_fr_1624672199_to_621950_at_01122004-13:4
8:23-in.gsm
2004 Jun 25
3
Using Soxmix on extensions.conf
Hi, i want to use soxmix to record some calls in my PBX. If i use soxmix on my linux shell it works so i can mixed two calls into one consolidated call. I want to do the process automatically since extensions.conf but it doesnt work. My extensions.conf looks like this:
exten => 407,1,SetVar(MONITORDIR=/var/spool/asterisk/monitor)
exten => 407,2,Monitor(wav,${TIMESTAMP}.${CALLERIDNUM}.wav)
2004 Jul 16
0
Subject: Re: SoxMix - Fails to Execute
Is the path to soxmix in the $PATH environment variable when asterisk
starts. If you're running from an init script it may not have path set
at that point.
When you log in, you set the path variable. Have you tried putting
explicit paths into the command in your extensions.conf?
IE /usr/bin/soxmix instead of just soxmix.
HTH
Chris
That sorted it, thanks
2006 Oct 26
0
How to disconnect in Conferenceing in between the Confermce .....
/Hello Users,
Good Morning,
In Conferemcing How to Disconnect the phone while in between the
Conference .....
When *I press the ' # ' key for Disconnecting the Conference..........
Below the Following to shows some Warning, ( in Red Color )
from-sip en
*CLI> -- Executing Playback("SIP/9002-08f9feb8", "conf-hasentered")
in new stack
2006 Oct 27
0
How to hung up , While in Conference going on.
/Hello Users,
Good Morning,
In Conferemcing How to Disconnect the phone while in between the
Conference .....
When *I press the ' # ' key for Disconnecting the Conference..........
Below the Following to shows some Warning, ( in Red Color )
from-sip en
*CLI> -- Executing Playback("SIP/9002-08f9feb8", "conf-hasentered")
in new stack
2005 Jul 12
2
monitor using incorrect path
Hello,
I have been noticing the following behaviour with the monitor command..
Normally it records to the default location and then uses soxmix to
create the correct wav file.
But for some reason sometimes it doesn't use
/var/spool/asterisk/monitor/.. but //var/spool/asterisk/monitor/..
(notice the 2 // in front!)
Here is some logging:
monitor executing ( nice -n 19 soxmix
2006 Mar 14
1
invalid wav gsm frame size: 1 bytes ??
I couldn't find any specific reference to this but maybe Im missing
something completly...
anyways, when trying to mix a few wav files together post-recording (the
-in/-out files) using a pretty vanila soxmix line, I get the error:
Done Mixing OUT115-20060215-150749-1139976460.7898-out.WAV.....
Mixing OUT115-20060215-155022-1139979011.8787.....
/usr/bin/soxmix: invalid wav gsm frame size: 1