Vinod Nadiadwala
2012-Dec-31 09:42 UTC
[asterisk-users] new user help required to build voice recorder with asterisk
Hi, I am new to asterisk, i want to know that is it possible to use asterisk for build voice recording system. Scenario : ISDN PRI line (30 line) I want every incoming & outgoing call has to recorded, but without manual action. system has to auto receive the call. Please suggest, how should i start and with which hardware / cards it is possible. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20121231/c61c31d1/attachment.htm>
Leandro Dardini
2012-Dec-31 09:56 UTC
[asterisk-users] new user help required to build voice recorder with asterisk
You should start getting a PRI card. I have good result with both Sangoma and Digium one. After having configured the card in the system (libpri, dahdi and asterisk part), it is a matter of few asterisk configuration row to save all calls to a wav file. For example, if your incoming calls are put in the "incoming" context and your PRI card is identified with the g1 group, the dialplan can be as easy as the following: context incoming { _X. => { MixMonitor(${UNIQUEID}.wav); Dial(DAHDI/g1/${EXTEN}); } } Leandro 2012/12/31 Vinod Nadiadwala <thinwala at gmail.com>> Hi, > > I am new to asterisk, i want to know that is it possible to use asterisk > for build voice recording system. > > Scenario : > ISDN PRI line (30 line) > I want every incoming & outgoing call has to recorded, but without manual > action. system has to auto receive the call. > > Please suggest, how should i start and with which hardware / cards it is > possible. > > > > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > 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/20121231/7c67df25/attachment-0001.htm>
Satish Barot
2012-Dec-31 09:58 UTC
[asterisk-users] new user help required to build voice recorder with asterisk
On Mon, Dec 31, 2012 at 3:12 PM, Vinod Nadiadwala <thinwala at gmail.com>wrote:> Hi, > > I am new to asterisk, i want to know that is it possible to use asterisk > for build voice recording system. > > Scenario : > ISDN PRI line (30 line) > I want every incoming & outgoing call has to recorded, but without manual > action. system has to auto receive the call. > > Please suggest, how should i start and with which hardware / cards it is > possible. > > Hi Vinod,You can certainly build a voice recording system with Asterisk. Have a look at Record application in Asterisk. https://wiki.asterisk.org/wiki/display/AST/Application_Record --Satish Barot -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20121231/155976b5/attachment.htm>
Satish Barot
2012-Dec-31 10:19 UTC
[asterisk-users] new user help required to build voice recorder with asterisk
On Mon, Dec 31, 2012 at 3:28 PM, Satish Barot <satish4asterisk at gmail.com>wrote:> On Mon, Dec 31, 2012 at 3:12 PM, Vinod Nadiadwala <thinwala at gmail.com>wrote: > >> Hi, >> >> I am new to asterisk, i want to know that is it possible to use asterisk >> for build voice recording system. >> >> Scenario : >> ISDN PRI line (30 line) >> I want every incoming & outgoing call has to recorded, but without manual >> action. system has to auto receive the call. >> >> Please suggest, how should i start and with which hardware / cards it is >> possible. >> >> Hi Vinod, > > You can certainly build a voice recording system with Asterisk. Have a > look at Record application in Asterisk. > https://wiki.asterisk.org/wiki/display/AST/Application_Record > > --Satish Barot >:) Thought you need just voice recorder without human intervention for Inbound. If you want to record the calls which are getting connected with human, look at Monitor or Mixmonitor. https://wiki.asterisk.org/wiki/display/AST/Application_MixMonitor https://wiki.asterisk.org/wiki/display/AST/Application_Monitor Before you get going, start reading on https://wiki.asterisk.org, http://www.voip-info.org/wiki/view/Asterisk(though it is bit outdated) for more information -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20121231/86830a5b/attachment.htm>
Lenz Emilitri
2013-Jan-02 11:18 UTC
[asterisk-users] new user help required to build voice recorder with asterisk
With just one PRI card this should not be an issue, but for larger systems you may consider using something like Oreka to offload the I/O from the Asterisk server.... l. 2012/12/31 Vinod Nadiadwala <thinwala at gmail.com>> Hi, > > I am new to asterisk, i want to know that is it possible to use asterisk > for build voice recording system. > > Scenario : > ISDN PRI line (30 line) > I want every incoming & outgoing call has to recorded, but without manual > action. system has to auto receive the call. > > Please suggest, how should i start and with which hardware / cards it is > possible. > > > > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- Loway - home of QueueMetrics - http://queuemetrics.com Test-drive WombatDialer beta @ http://wombatdialer.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130102/cccca6e2/attachment.htm>
Steve Totaro
2013-Jan-02 12:29 UTC
[asterisk-users] new user help required to build voice recorder with asterisk
Top post for the New Year. Yes, if you might scale up to 60 or more simultaneous calls, definitely look at OrecX or RTPTap because you will run into I/O issues. Not sure what current hardware can accommodate but it is best not to find out. Considering the very low cost of hardware these days compared with the cost of possible downtime, poor audio, lost recordings or whatever else you can assign a monetary value, I always suggest a separate machine for "Passive" recording when dealing with more than a handful of simultaneous calls. Thanks, Steve Totaro On Wed, Jan 2, 2013 at 6:18 AM, Lenz Emilitri <lenz.loway at gmail.com> wrote:> With just one PRI card this should not be an issue, but for larger systems > you may consider using something like Oreka to offload the I/O from the > Asterisk server.... > l. > > > 2012/12/31 Vinod Nadiadwala <thinwala at gmail.com> >> >> Hi, >> >> I am new to asterisk, i want to know that is it possible to use asterisk >> for build voice recording system. >> >> Scenario : >> ISDN PRI line (30 line) >> I want every incoming & outgoing call has to recorded, but without manual >> action. system has to auto receive the call. >> >> Please suggest, how should i start and with which hardware / cards it is >> possible. >> >> >> >> >> -- >> _____________________________________________________________________ >> -- Bandwidth and Colocation Provided by http://www.api-digital.com -- >> New to Asterisk? Join us for a live introductory webinar every Thurs: >> http://www.asterisk.org/hello >> >> asterisk-users mailing list >> To UNSUBSCRIBE or update options visit: >> http://lists.digium.com/mailman/listinfo/asterisk-users > > > > > -- > Loway - home of QueueMetrics - http://queuemetrics.com > Test-drive WombatDialer beta @ http://wombatdialer.com > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users