Re: [asterisk-users] How to write the incoming stream to pipe/socket instead of .gsm file

2009-11-16 Thread covici
Well, how about piping an internet stream into a phone call via some app in an extension? Alex Balashov abalas...@evaristesys.com wrote: cov...@ccs.covici.com wrote: Is there any app to pipe a stream to a call either a meetme conference or even a regular call? Do you mean piping

Re: [asterisk-users] How to write the incoming stream to pipe/socket instead of .gsm file

2009-11-16 Thread Alex Balashov
It seems to me this could be achieved in the manner I just described by specifying an Internet stream as a music on hold source and putting the outgoing channel on hold via a Local channel. -- Sent from mobile device On Nov 16, 2009, at 5:36 AM, cov...@ccs.covici.com wrote: Well, how about

[asterisk-users] How to write the incoming stream to pipe/socket instead of .gsm file

2009-11-15 Thread Rizwan Hasnani
Hi, I want to record the incoming call in asterisk and instead of writing the stream to a file..i want to write the stream to a pipe or socket. In Asterisks code, where i need to do the changes..? If anyone have done this thing before , plz help me out Thanks is advance.. Thanks

Re: [asterisk-users] How to write the incoming stream to pipe/socket instead of .gsm file

2009-11-15 Thread Alex Balashov
Named pipes are presented the same way to calling applications as files, so you can just write to them as though they were a normal file. UNIX domain sockets and TCP sockets require socket system calls to connect to them for the purpose you are trying to achieve, which Asterisk does not offer

Re: [asterisk-users] How to write the incoming stream to pipe/socket instead of .gsm file

2009-11-15 Thread covici
Is there any app to pipe a stream to a call either a meetme conference or even a regular call? Alex Balashov abalas...@evaristesys.com wrote: Named pipes are presented the same way to calling applications as files, so you can just write to them as though they were a normal file. UNIX

Re: [asterisk-users] How to write the incoming stream to pipe/socket instead of .gsm file

2009-11-15 Thread Alex Balashov
cov...@ccs.covici.com wrote: Is there any app to pipe a stream to a call either a meetme conference or even a regular call? Do you mean piping outside audio of some description into a MeetMe conference? If so, I do not know if there is a pre-built app, but this can be achieved relatively