Re: [asterisk-users] interrupting MOH

2008-04-02 Thread Atis Lezdins
Sorry for top-posting, but seems everyone on this thread did so. Also that would be my suggestion for now - call queue with periodic-announce. However i see that this would make nice architectural improvement - allow inject sound files into MoH stream. This would be useful for example in call

Re: [asterisk-users] interrupting MOH

2008-04-02 Thread Matt Florell
Hello, We achieve this using an AGI script in the VICIDIAL project for our version of inbound queues. You start MoH then when you stream a sound to the channel it will stop MoH then after the sound is done you start MoH back up again. Probably a bit more involved than what you want, but it dose

Re: [asterisk-users] interrupting MOH

2008-04-02 Thread Brent Davidson
You could also, conceivably, handle this outside of asterisk by using a more complex MOH stream source. For instance, use a shoutcast client as the MOH source, run your own shoutcast server streaming your music and have a script set up to periodically interrupt the stream being served to the

Re: [asterisk-users] interrupting MOH

2008-04-02 Thread Atis Lezdins
On Wed, Apr 2, 2008 at 11:05 PM, Brent Davidson [EMAIL PROTECTED] wrote: You could also, conceivably, handle this outside of asterisk by using a more complex MOH stream source. For instance, use a shoutcast client as the MOH source, run your own shoutcast server streaming your music and have

Re: [asterisk-users] interrupting MOH

2008-04-02 Thread Brent Davidson
Well, not necessarily. You could have one MOH stream that gets interrupted say every 10 seconds with a generic message. A caller that gets connected to the MOH stream might come in in the middle of the message, during music playback, or anywhere form 0-10 seconds before the message plays

[asterisk-users] interrupting MOH

2008-04-01 Thread Pete Kay
Hi all, I am hoping someone can help me out on this. I want to be able to interrupt MOH every X seconds after the DIAL command is executed. The interrupt greeting is something like please wait while we transfer your call. How can I do that? Within the DIAL options, I can't see any announce

Re: [asterisk-users] interrupting MOH

2008-04-01 Thread Tilghman Lesher
On Tuesday 01 April 2008 05:14:25 Pete Kay wrote: I am hoping someone can help me out on this. I want to be able to interrupt MOH every X seconds after the DIAL command is executed. The interrupt greeting is something like please wait while we transfer your call. How can I do that? Within

Re: [asterisk-users] interrupting MOH

2008-04-01 Thread John Millican
Tilghman Lesher wrote: On Tuesday 01 April 2008 05:14:25 Pete Kay wrote: I am hoping someone can help me out on this. I want to be able to interrupt MOH every X seconds after the DIAL command is executed. The interrupt greeting is something like please wait while we transfer your call. How

Re: [asterisk-users] interrupting MOH

2008-04-01 Thread Rob Hillis
You may be able to achieve the desired result using queues rather than Dial statements. Overkill perhaps, but it's the only way I can think to implement it at the moment. John Millican wrote: Tilghman Lesher wrote: On Tuesday 01 April 2008 05:14:25 Pete Kay wrote: I am hoping

Re: [asterisk-users] interrupting MOH

2008-04-01 Thread Andreas van dem Helge
I think that's still a better idea than using a dump the caller into meetme hack and is actually what I was going to suggest. If you want something simpler than a queue then inject the sounds into the moh already. On Tue, Apr 1, 2008 at 3:09 PM, Rob Hillis [EMAIL PROTECTED] wrote: You may be