similar to: Ustream feed as MOH

Displaying 20 results from an estimated 13000 matches similar to: "Ustream feed as MOH"

2008 May 17
2
[Bug 15990] New: Can't play Fedora 9 sneap prview video from ustream.com: Can't play Fedora 9 sneak prview video from ustream.com
http://bugs.freedesktop.org/show_bug.cgi?id=15990 Summary: Can't play Fedora 9 sneap prview video from ustream.com: Can't play Fedora 9 sneak prview video from ustream.com Product: swfdec Version: 0.6.6 Platform: Other OS/Version: All Status: NEW Severity: enhancement Priority: medium
2020 Apr 13
1
Multiple real times for same object
On Mon, Apr 13, 2020 at 10:45 AM Joshua C. Colp <jcolp at sangoma.com> wrote: > On Mon, Apr 13, 2020 at 11:38 AM Dovid Bender <dovid at telecurve.com> wrote: > >> Josh, >> >> What should Asterisk do if one of the real time methods fail? I have in >> extconfig.conf >> musiconhold => curl,http://localhost/moh.php,1 >> musiconhold =>
2020 Apr 13
2
Multiple real times for same object
Josh, What should Asterisk do if one of the real time methods fail? I have in extconfig.conf musiconhold => curl,http://localhost/moh.php,1 musiconhold => mysql,db-east,asterisk_moh,2 If the first server sends back a 404 it does not go to the second connection. Shouldn't a 404 be considered a failure and it should then move over to the next rt engine? On Thu, Jan 2, 2020 at 7:06 AM
2016 Mar 16
2
Using Asterisk to play Icecast streams
Hi all, A long time ago I built an Asterisk system that plays IceCast streams via moh. extensions.conf: Exten => moh,1,Set(SIP_CODEC=ulaw) Exten => moh,2,Answer Exten => moh,3,MusicONHold(test_new) Exten => moh,4,Hangup musiconhold.conf ; test_new [test_new] mode=custom application=/etc/mystreams/test_new.sh test_new.sh #!/bin/bash wget -q -T 120 -O -
2006 Nov 14
0
Retain call control: Avoid letting call get
Take a look at freepbx 2.2 beta. We have made both ringgroups and follow-me have a call confirmation option. When used, the ringgroup/follow-me extensions that are outside lines (like your cell phone) must confirm they want the call (press 1 to accept, 2 to decline). All the while the caller hears ringing (or MoH if chosen). If no answer, they are sent on to where ever else you want them to go
2016 Mar 16
2
Using Asterisk to play Icecast streams
Steve, These are live streams of events so I can't simply rip the audio. As I mentioned at the end of my email putting in a sleep did help a bit however there are only so many streams Asterisk will grab nicely at once with out spiking the CPU. I also tinkered a bit with real time here is what I found: 1) If we have cachertclasses=no then Asterisk will only pull the stream if some one is
2016 May 09
3
Switching between Music on Hold streams. [13.8.2]
Hi there; I didn't see any "G" option in the example above, and the usage for the option parameters is entirely undocumented at https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Application_Dial The G options are as below G - If the call is answered, transfer the calling party to the specified priority and the called party to the specified priority plus one. context exten
2020 Apr 13
0
Multiple real times for same object
On Mon, Apr 13, 2020 at 11:38 AM Dovid Bender <dovid at telecurve.com> wrote: > Josh, > > What should Asterisk do if one of the real time methods fail? I have in > extconfig.conf > musiconhold => curl,http://localhost/moh.php,1 > musiconhold => mysql,db-east,asterisk_moh,2 > > If the first server sends back a 404 it does not go to the second > connection.
2006 Mar 11
0
how to check if ztdummy is working properly?
Kernel is 2.6. zaptel and ztdummy load with Linux, so I can check in lsmod that they are loaded. They load without any problem, I've loaded them manually too. Zach A -----Original Message----- From: Dovid Bender [mailto:asteriskdigium@yahoo.com] Sent: Friday, March 10, 2006 6:13 AM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] how to check if
2009 Jul 13
0
ooh323 and h323, it accept the call even not added in h323.conf
Dears; Now using Asterisk H323 (which coming with Asterisk, I just compiled PWLIB and OPENH323), now I am placing a call from the IP Phone, the call comes to Asterisk, and it goes to the default context, but did not hear any voice of the played wave file. 1) Why Asterisk accepted the call without authentication? At least, it should be added to the h323.conf. 2) In case we found the method to
2006 Jan 22
1
Gen. Question
<RANT> Funny your concerned about copyrights and moral issues regarding the work of others. One question you may want to ask YOURSELF is: Why would I use as my email a copyrighted work followed by the name of the Company that owns the copyright??? asteriskdigum@yahoo.com, Come on!! Who are you trying to fool? Are you out for the fast buck, by having someone that thinks you work for
2011 May 09
3
how to play music when dial fail or time out
Hi all, I need to support this feature. When caller dial if the dial fail or no answer from the called number then play a music. So how to achieve that? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110509/c3bb9124/attachment.htm>
2006 Oct 19
2
Polycom boot error
I am having the same issue as below. Has this issue been solved or does anyone know an answer? This error recently began and we have multiple phones out of commission. PLEASE HELP!! http://lists.digium.com/pipermail/asterisk-users/2006-August/162841.html How did you find out about 468*??? It's sure as poop not documented in the Polycom Admin Guide anywhere. -----Original Message-----
2011 May 09
4
Slightly OT: Android phone as sip-gw?
Hi, i have some spare (read: Boss get's a new one every few month ;)) Android Phones laying around. Does someone know a way of using them as a mobile gateway for asterisk? I could not find any SIP-Gateway in the Market, and i don't think it's possible to use the GSM Audio directly with something like chan_datacard... Regards, Jay -------------- next part -------------- An HTML
2019 Dec 29
2
Multiple real times for same object
Hi, Is there any way in Asterisk to have multiple forms of real time for the same object? For instance my main source for real time is MySQL. I want a fail over that if a mailbox is say not in the MySQL database for Asterisk to try via curl. TIA. Dovid -------------- next part -------------- An HTML attachment was scrubbed... URL:
2019 Apr 19
2
Forking AGI or GoSub
In PHP something like: $pid = pcntl_fork(); if ($pid != 0) { // we are the parent // do parent stuff exit; } // we are the child, detatch from terminal $sid = posix_setsid(); if ($sid < 0) { die; } // do child stuff On 04/19/2019 02:00 PM, Mark Wiater wrote: > On 4/19/2019 1:49 PM, Dovid Bender wrote: >> Mark, >> >> I am using PHP agi and when forking
2016 May 09
2
Switching between Music on Hold streams. [13.8.2]
Josh, As he is playing different streams I think he wants to give the users the option to select another stream. On Mon, May 9, 2016 at 9:58 AM, Joshua Colp <jcolp at digium.com> wrote: > Jonathan H wrote: > >> I'd like multiple people to be able to dial in and listen to various >> live radio streams. >> >> I was told that the correct resource-friendly
2019 Aug 01
4
Lightweight ODBC DB
Glenn, I can't use MySQL as each node currently has MySQL however there is a lot of data that is stored locally on each box. I may have to take this route if I can't find something else but that would mean syncing all sorts of data that does not need to be synced. On Tue, Jul 30, 2019 at 10:03 PM Glenn Geller (VDOPh) <ggeller at vdo-ph.com> wrote: > Hi Dovid, > >
2016 Oct 13
2
Openfile Issue
[root at abc asterisk]# lsof -u 50771 | wc -l 0 BTW, I'm using CentOS 6.5 > > Date: Thu, 13 Oct 2016 10:20:19 -0400 >> From: Dovid Bender <dovid at telecurve.com> >> To: Asterisk Users Mailing List - Non-Commercial Discussion >> <asterisk-users at lists.digium.com> >> Subject: Re: [asterisk-users] Openfile Issue >> Message-ID:
2012 Feb 12
0
WATCH Wolverhampton Wanderers vs West Bromwich Albion LIVE STREAMING ONLINE English Premier League S
Watch Live Streaming English Premier League Soccer Match between hot favorite Wolverhampton Wanderers vs West Bromwich Albion Online HQD TV Link on Your PC or Laptop. We are providing a certified 4500 Channels & one platform HD TV link embedding from popular website like justin.TV, ustream, live on Fox Sports, ESPN live TV channel, Fox spots in USA, Fox Sports in UK, Australian TV channel,