I am looking for a way to allow a user to record a call simply by pressing a button or some combination of buttons on their phone. Is this possible? I have read the stuff about the monitor command; however, this doesn't seem to be very interactive for the user. Thanks, Andy -- H. Andy Goss Network Engineer Network Advocates Inc. Main: 502.412.1050 DID: 502.992.5933 Mobile: 502.387.8216 agoss@ntad.com
On Mon, Oct 17, 2005 at 01:27:59PM -0400, Andy Goss exclaimed:>I am looking for a way to allow a user to record a call simply by >pressing a button or some combination of buttons on their phone. Is >this possible? > >I have read the stuff about the monitor command; however, this doesn't >seem to be very interactive for the user. > >Thanks, >Andy >Use 1.2 or HEAD and enable automon in features.conf.
Mojo with Horan & Company, LLC
2005-Oct-17 10:53 UTC
[Asterisk-Users] initiate call recording from phone.
If you have httpd with php on the * server, you can do what I did: I set up the key combination *# in features.conf to monitor and created a few php files to interact with the results. Save the four php files at: http://horanappraisals.com/asterisk/ into a folder on the * web server, eg: /var/www/html/recordings/ -- rename them all to .php instead of .phps, and edit config.php to point to the asterisk monitor directory (usually /var/spool/asterisk/monitor). Now make a soft link so the recorded waves appear in the web tree: ln -s /var/spool/asterisk/monitor /var/www/html/recordings/monitor Then direct a web browser to http://asterisk_server/recordings/ and it should be pretty self-explanatory. No recordings will appear in the list if you don't have the sox packages installed. Andy Goss wrote:> I am looking for a way to allow a user to record a call simply by > pressing a button or some combination of buttons on their phone. Is > this possible? > > I have read the stuff about the monitor command; however, this doesn't > seem to be very interactive for the user. > > Thanks, > Andy > > -- > H. Andy Goss > Network Engineer > Network Advocates Inc. > Main: 502.412.1050 > DID: 502.992.5933 > Mobile: 502.387.8216 > agoss@ntad.com > > > _______________________________________________ > --Bandwidth and Colocation sponsored by Easynews.com -- > > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- Mojo <mojo@horanappraisals.com> Office Manger, Horan & Company, LLC (907) 747-6666 x112
Thanks everyone for the help so far. I figured it out using automon, howver my next question is this: Is there a way to make the recording go to the voicemail directory for the user that records it. This way, they can access it from their phone. -- H. Andy Goss Network Engineer Network Advocates Inc. Main: 502.412.1050 DID: 502.992.5933 Mobile: 502.387.8216 agoss@ntad.com> -----Original Message----- > From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users- > bounces@lists.digium.com] On Behalf Of Andy Goss > Sent: Monday, October 17, 2005 1:28 PM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: [Asterisk-Users] initiate call recording from phone. > > I am looking for a way to allow a user to record a call simply by > pressing a button or some combination of buttons on their phone. Is > this possible? > > I have read the stuff about the monitor command; however, this doesn't > seem to be very interactive for the user. > > Thanks, > Andy > > -- > H. Andy Goss > Network Engineer > Network Advocates Inc. > Main: 502.412.1050 > DID: 502.992.5933 > Mobile: 502.387.8216 > agoss@ntad.com > > > _______________________________________________ > --Bandwidth and Colocation sponsored by Easynews.com -- > > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
Mojo with Horan & Company, LLC
2005-Oct-19 11:26 UTC
[Asterisk-Users] initiate call recording from phone.
Well... I don't know anything about A@h. I know even more nothing about dialparties.agi... but I can summarize http://www.voip-info.org/tiki-index.php?page=Asterisk+cmd+Dial for you: Let's say you want to call out on a PSTN line. A command such as the following will be in your outgoing context: exten => x,1,Dial(Zap/2/18005551212,,W) before the first comma means dial 18005551212 out the second Zap line, the fact that there's nothing between the 2nd and 3rd comma means wait forever for an answer, and the W means let the _calling_ user (you) start a recording (in my case, with *#) Let's say you want to be able to record incoming calls from PSTN. A command such as the following would be in your incoming context: exten => s,1,Dial(SIP/110,20,w) The SIP/110 is where to ring when an incoming call comes in, the 20 means wait 20 seconds before proceeding (to voicemail, or whatever you want) and the small w means let the _called_ user (you, again) start a recording however configured. So....... if you don't have direct control over your extensions.conf (as I said, I don't know A@h) I don't know if you can get your hands dirty with things like this. Probably there's a check-box in A@h somewhere that allows this. good luck! todd wrote:> Moj > First great to see someone has figured this out, I have been struggling with > it. > If not to much trouble; could you spare an example of where that "w or W" > exist in the Dial command. Also will this command in the Dial plan work if I > am using Asterisk@home. > And how does this work into the whole picture with the dialparties.agi > script, if at all? > Obviously I am a little confused on how this all works any help would be > GREATLY appreciated. > Todd > ----- Original Message ----- > From: "Mojo with Horan & Company, LLC" <mojo@horanappraisals.com> > To: "Asterisk Users Mailing List - Non-Commercial Discussion" > <asterisk-users@lists.digium.com> > Sent: Monday, October 17, 2005 10:56 AM > Subject: Re: [Asterisk-Users] initiate call recording from phone. > > > >>And the w or W options must be specified in the Dial() cmd, as in: >>http://www.voip-info.org/tiki-index.php?page=Asterisk+cmd+Dial >> >>Moj >> >>Mojo with Horan & Company, LLC wrote: >> >>>If you have httpd with php on the * server, you can do what I did: >>> >>>I set up the key combination *# in features.conf to monitor and created a >>>few php files to interact with the results. Save the four php files at: >>> >>>http://horanappraisals.com/asterisk/ >>> >>>into a folder on the * web server, eg: /var/www/html/recordings/ -- >>>rename them all to .php instead of .phps, and edit config.php to point to >>>the asterisk monitor directory (usually /var/spool/asterisk/monitor). Now >>>make a soft link so the recorded waves appear in the web tree: >>> >>>ln -s /var/spool/asterisk/monitor /var/www/html/recordings/monitor >>> >>>Then direct a web browser to http://asterisk_server/recordings/ and it >>>should be pretty self-explanatory. No recordings will appear in the list >>>if you don't have the sox packages installed. >>> >>>Andy Goss wrote: >>> >>> >>>>I am looking for a way to allow a user to record a call simply by >>>>pressing a button or some combination of buttons on their phone. Is >>>>this possible? >>>> >>>>I have read the stuff about the monitor command; however, this doesn't >>>>seem to be very interactive for the user. >>>>Thanks, >>>>Andy >>>> >>>>-- >>>>H. Andy Goss >>>>Network Engineer >>>>Network Advocates Inc. >>>>Main: 502.412.1050 >>>>DID: 502.992.5933 >>>>Mobile: 502.387.8216 >>>>agoss@ntad.com >>>> >>>>_______________________________________________ >>>>--Bandwidth and Colocation sponsored by Easynews.com -- >>>> >>>>Asterisk-Users mailing list >>>>Asterisk-Users@lists.digium.com >>>>http://lists.digium.com/mailman/listinfo/asterisk-users >>>>To UNSUBSCRIBE or update options visit: >>>> http://lists.digium.com/mailman/listinfo/asterisk-users >>>> >>> >>> >>-- >>Mojo <mojo@horanappraisals.com> >>Office Manger, Horan & Company, LLC >>(907) 747-6666 x112 >>_______________________________________________ >>--Bandwidth and Colocation sponsored by Easynews.com -- >> >>Asterisk-Users mailing list >>Asterisk-Users@lists.digium.com >>http://lists.digium.com/mailman/listinfo/asterisk-users >>To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users > >-- Mojo <mojo@horanappraisals.com> Office Manger, Horan & Company, LLC (907) 747-6666 x112
Tomislav Parcina
2005-Oct-20 00:49 UTC
[Asterisk-Users] initiate call recording from phone.
This (W and w) work for you? Can you tell me can I put both W and w in Dial command? You have specified *# in features.conf? Can you tell me how does your features.conf looks like? Tank you for your time! -- Tomislav Parcina Lama d.o.o. www.lama.hr tparcina#lama.hr> Well... I don't know anything about A@h. I know even more > nothing about dialparties.agi... but I can summarize > http://www.voip-info.org/tiki-index.php?page=Asterisk+cmd+Dial > for you: > > Let's say you want to call out on a PSTN line. A command > such as the following will be in your outgoing context: > exten => x,1,Dial(Zap/2/18005551212,,W) > before the first comma means dial 18005551212 out the second > Zap line, the fact that there's nothing between the 2nd and > 3rd comma means wait forever for an answer, and the W means > let the _calling_ user (you) start a recording (in my case, with *#) > > Let's say you want to be able to record incoming calls from > PSTN. A command such as the following would be in your > incoming context: > exten => s,1,Dial(SIP/110,20,w) > The SIP/110 is where to ring when an incoming call comes in, > the 20 means wait 20 seconds before proceeding (to voicemail, > or whatever you > want) and the small w means let the _called_ user (you, > again) start a recording however configured. > > So....... if you don't have direct control over your > extensions.conf (as I said, I don't know A@h) I don't know if > you can get your hands dirty with things like this. Probably > there's a check-box in A@h somewhere that allows this. > > good luck!
james.texter@cox.net
2005-Oct-20 08:00 UTC
[Asterisk-Users] initiate call recording from phone.
I'm curious if anyone has this working with *@home? I just installed the 2.0 Beta, which loads up * v1.2.0. I edited my features.conf to put in the following: [featuremap] automon => *1 I place a call to my cell phone, and from my polycom put in *1, but nothing happens. If I use *@home to setup to always record, it works fine. If anyone has this working with *@home 2.0 Beta, please let me know. Thanks, James -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Mojo with Horan & Company, LLC Sent: Wednesday, October 19, 2005 1:26 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] initiate call recording from phone. Well... I don't know anything about A@h. I know even more nothing about dialparties.agi... but I can summarize http://www.voip-info.org/tiki-index.php?page=Asterisk+cmd+Dial for you: Let's say you want to call out on a PSTN line. A command such as the following will be in your outgoing context: exten => x,1,Dial(Zap/2/18005551212,,W) before the first comma means dial 18005551212 out the second Zap line, the fact that there's nothing between the 2nd and 3rd comma means wait forever for an answer, and the W means let the _calling_ user (you) start a recording (in my case, with *#) Let's say you want to be able to record incoming calls from PSTN. A command such as the following would be in your incoming context: exten => s,1,Dial(SIP/110,20,w) The SIP/110 is where to ring when an incoming call comes in, the 20 means wait 20 seconds before proceeding (to voicemail, or whatever you want) and the small w means let the _called_ user (you, again) start a recording however configured. So....... if you don't have direct control over your extensions.conf (as I said, I don't know A@h) I don't know if you can get your hands dirty with things like this. Probably there's a check-box in A@h somewhere that allows this. good luck! todd wrote:> Moj > First great to see someone has figured this out, I have been struggling with > it. > If not to much trouble; could you spare an example of where that "w or W" > exist in the Dial command. Also will this command in the Dial plan work if I > am using Asterisk@home. > And how does this work into the whole picture with the dialparties.agi > script, if at all? > Obviously I am a little confused on how this all works any help would be > GREATLY appreciated. > Todd > ----- Original Message ----- > From: "Mojo with Horan & Company, LLC" <mojo@horanappraisals.com> > To: "Asterisk Users Mailing List - Non-Commercial Discussion" > <asterisk-users@lists.digium.com> > Sent: Monday, October 17, 2005 10:56 AM > Subject: Re: [Asterisk-Users] initiate call recording from phone. > > > >>And the w or W options must be specified in the Dial() cmd, as in: >>http://www.voip-info.org/tiki-index.php?page=Asterisk+cmd+Dial >> >>Moj >> >>Mojo with Horan & Company, LLC wrote: >> >>>If you have httpd with php on the * server, you can do what I did: >>> >>>I set up the key combination *# in features.conf to monitor and created a >>>few php files to interact with the results. Save the four php files at: >>> >>>http://horanappraisals.com/asterisk/ >>> >>>into a folder on the * web server, eg: /var/www/html/recordings/ -- >>>rename them all to .php instead of .phps, and edit config.php to point to >>>the asterisk monitor directory (usually /var/spool/asterisk/monitor). Now >>>make a soft link so the recorded waves appear in the web tree: >>> >>>ln -s /var/spool/asterisk/monitor /var/www/html/recordings/monitor >>> >>>Then direct a web browser to http://asterisk_server/recordings/ and it >>>should be pretty self-explanatory. No recordings will appear in the list >>>if you don't have the sox packages installed. >>> >>>Andy Goss wrote: >>> >>> >>>>I am looking for a way to allow a user to record a call simply by >>>>pressing a button or some combination of buttons on their phone. Is >>>>this possible? >>>> >>>>I have read the stuff about the monitor command; however, this doesn't >>>>seem to be very interactive for the user. >>>>Thanks, >>>>Andy >>>> >>>>-- >>>>H. Andy Goss >>>>Network Engineer >>>>Network Advocates Inc. >>>>Main: 502.412.1050 >>>>DID: 502.992.5933 >>>>Mobile: 502.387.8216 >>>>agoss@ntad.com >>>> >>>>_______________________________________________ >>>>--Bandwidth and Colocation sponsored by Easynews.com -- >>>> >>>>Asterisk-Users mailing list >>>>Asterisk-Users@lists.digium.com >>>>http://lists.digium.com/mailman/listinfo/asterisk-users >>>>To UNSUBSCRIBE or update options visit: >>>> http://lists.digium.com/mailman/listinfo/asterisk-users >>>> >>> >>> >>-- >>Mojo <mojo@horanappraisals.com> >>Office Manger, Horan & Company, LLC >>(907) 747-6666 x112 >>_______________________________________________ >>--Bandwidth and Colocation sponsored by Easynews.com -- >> >>Asterisk-Users mailing list >>Asterisk-Users@lists.digium.com >>http://lists.digium.com/mailman/listinfo/asterisk-users >>To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users > >-- Mojo <mojo@horanappraisals.com> Office Manger, Horan & Company, LLC (907) 747-6666 x112 _______________________________________________ --Bandwidth and Colocation sponsored by Easynews.com -- Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users