Re: [asterisk-users] Record() Cmd and My SQL

2010-09-27 Thread David Backeberg
On Sun, Sep 26, 2010 at 10:49 PM, Govind, Mahesh (NSN - IN/Bangalore) wrote: > Another reason for storing in the database is to , enable some other > apps to access the recording at some point of time . Yeah, still not a good reason. File systems allow multiple read streams to the same file. Per

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-26 Thread Govind, Mahesh (NSN - IN/Bangalore)
Behalf Of ext Don Kelly Sent: Friday, September 24, 2010 11:49 PM To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re: [asterisk-users] Record() Cmd and My SQL I hadn't considered writing to the db real-time; was actually planning on recording locally and movi

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-24 Thread Don Kelly
David Backeberg Sent: Friday, September 24, 2010 12:56 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Record() Cmd and My SQL On Fri, Sep 24, 2010 at 1:32 PM, Don Kelly wrote: > Don sez: I don't know how to make Outlook indent. I usually to

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-24 Thread Danny Nicholas
To add to this laundry list #1. It is much simpler to get a path from a database and load that file than to try and process a MYSQL BLOB of any size. #2. If you should eventually leave MYSQL, blobs don't always play nicely (no pun intended) with other DB's like PostgreSQL. #3. You can always use S

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-24 Thread David Backeberg
On Fri, Sep 24, 2010 at 1:32 PM, Don Kelly wrote: > Don sez: I don't know how to make Outlook indent. I usually top-post, but I > don't like getting yelled at. > > Why do you say "Don't do that"? Is there a real reason that it would be bad? Performance is a real reason. Multiple simultaneous writ

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-24 Thread Don Kelly
-Original Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of David Backeberg Sent: Friday, September 24, 2010 11:28 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Record() Cmd

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-24 Thread David Backeberg
On Thu, Sep 23, 2010 at 11:23 PM, Govind, Mahesh (NSN - IN/Bangalore) wrote: > The reason is when doing a load balancing  , We  cannot confine the > recording to a particular asterisk machine ( If we have more than one > asterisk machine in the topology ). Yes you can. You can record the file whe

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-24 Thread Govind, Mahesh (NSN - IN/Bangalore)
John Taylor Sent: Friday, September 24, 2010 1:24 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Record() Cmd and My SQL Why not write the file to /tmp using MixMonitor, then use the command option to trigger an AGI script that will move the data into

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-24 Thread John Taylor
-Original Message- > From: asterisk-users-boun...@lists.digium.com > [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of ext David > Backeberg > Sent: Thursday, September 23, 2010 9:51 PM > To: Asterisk Users Mailing List - Non-Commercial Discussion > Subject: Re: [aste

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread Govind, Mahesh (NSN - IN/Bangalore)
Message- From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of ext David Backeberg Sent: Thursday, September 23, 2010 9:51 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [asterisk-users] Record() Cmd and My SQL

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread David Backeberg
On Thu, Sep 23, 2010 at 2:21 AM, Govind, Mahesh (NSN - IN/Bangalore) wrote: > HI , > > Is there Any way is there so that I can store my recordings directly to a > database rather storing the same to a file . Please, please, please tell us why you would want to do that. -- __

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread Danny Nicholas
>From: asterisk-users-boun...@lists.digium.com [mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of ext Danny Nicholas >Sent: Thursday, September 23, 2010 7:27 PM >To: 'Asterisk Users Mailing List - Non-Commercial Discussion' >Subject: Re: [asterisk-users] R

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread Govind, Mahesh (NSN - IN/Bangalore)
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of ext Danny Nicholas Sent: Thursday, September 23, 2010 7:27 PM To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: Re: [asterisk-users] Record() Cmd and My SQL Just my .02 - #1 - voip-info.org is a good re

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread Danny Nicholas
Just my .02 - #1 - voip-info.org is a good resource for finding this kind of script #2 - I think you are asking for trouble doing a direct recording using the PHP/MySQL combination; Personally I would do C/MySQL but the exposure you face depends on the length of your recording(s). #3 - since yo

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread Gopalakrishnan A.N
t; > > > *From:* asterisk-users-boun...@lists.digium.com [mailto: > asterisk-users-boun...@lists.digium.com] *On Behalf Of *ext Gopalakrishnan > A.N > *Sent:* Thursday, September 23, 2010 5:46 PM > *To:* Asterisk Users Mailing List - Non-Commercial Discussion > *Subject:* Re

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread Govind, Mahesh (NSN - IN/Bangalore)
Discussion Subject: Re: [asterisk-users] Record() Cmd and My SQL I hope it cant be done using dialplan but it can be done through AGI scripting...you can use your favorite programming language PHP / Perl and try to record the call with record application and point to the database instead of a folder

Re: [asterisk-users] Record() Cmd and My SQL

2010-09-23 Thread Gopalakrishnan A.N
I hope it cant be done using dialplan but it can be done through AGI scripting...you can use your favorite programming language PHP / Perl and try to record the call with record application and point to the database instead of a folder path. Asterisk Users your feedback also welcome on this.. On