Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] Conference users hear MOH until leader enters?

Goto page Previous  1, 2
 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
jcromes at gmail.com
Guest





PostPosted: Fri May 29, 2009 9:25 am    Post subject: [Freeswitch-users] Conference users hear MOH until leader en Reply with quote

Unfortunately, the instance of FreeSwitch where I've been playing with this is at work and I can't get to it at the moment... Eventually, I plan to post my entire implementation (javascript and dialplan) on the Wiki because I've added quite a few improvements to the confcall.js example that is there now...

Here's what I did though:

In conference.conf.xml, put this entire line into the profile you are using for your conferences:
<param name="conference-flags" value="wait-mod"/>

In your dialplan, you need to use the two lines below. Somehow, you need to separate how callers encounter them though..

This first line enters callers as a standard user. This means that anyone entering conference 1234 using this line will WAIT until a moderator enters.
<action application="conference" data="1234@your-conf-profile-name"/>

This second line sets the moderator member flag as they enter conference 1234. Anyone already in the conference will now come off music. You could put an extra prompt for a pass code before this line. Or you could assign two extensions that both go to the same conference, but one extension is publicly known, the other is only known to the owner/moderator.
<action application="conference" data="1234@your-conf-profile-name+flags{moderator}"/>

Hope that helps.


João Mesquita wrote:
Quote:
I could not get this working on current trunk. Can you post your configuration on conference module and the dialplan example?

Thanks,

jmesquita
Back to top
jcromes at gmail.com
Guest





PostPosted: Fri May 29, 2009 5:28 pm    Post subject: [Freeswitch-users] Conference users hear MOH until leader en Reply with quote

I'll post the script, dialplan and how-to on the wiki as soon as I can...
Will follow up on this thread with a link once it's complete.

Thanks for the interest.


Brian West wrote:
Quote:
Maybe someone can do a wiki page with scripts and a howto?

/b

On May 29, 2009, at 3:31 PM, Anton Karpov wrote:
Quote:
I'd be very interested to see your script and dialplan , for me it's a
very important issue as my conference server facing to outside and I
need to have moderators and regular users entering different pins.
Anton


Brian West
brian@freeswitch.org (brian@freeswitch.org)



-- Meet us at ClueCon! http://www.cluecon.com







Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
jcromes at gmail.com
Guest





PostPosted: Sat May 30, 2009 1:13 am    Post subject: [Freeswitch-users] Conference users hear MOH until leader en Reply with quote

Ok, my javascript, dialplan, etc has been Wiki'd...

The new page I created [Examples JavaScript Conference IVR] is here:
http://wiki.freeswitch.org/wiki/Examples_JavaScript_Conference_IVR

I linked it from the [Javascript Examples] page here:
http://wiki.freeswitch.org/wiki/Javascript_Examples

I hope some of you find it useful...


Anthony Minessale, et al:
Could you please take a look at the "Issues" section and give me your opinions on bullets 3 and 4 please? I detailed some quirks of the wait-mod conference flag and would like to know your thoughts...

Regarding #3:
Here is what I'm used to... When the (last) moderator drops, the users hear something like "the moderator has left the conference" and then get kicked back to music. If a moderator dials back in, music goes away and the users are re-joined. It's intended to be a secure conference, and the moderator is the security, right? Other conferencing systems I've worked with behave like this as well (not just Asterisk). I realize we're getting into the realm of fancy features rather than a clean conference application, so I'm already prepared take a hike. =) Could I emulate that behavior another way?

Regarding #4:
I don't have an opinion either way on the ding sounds really - it's a cosmetic thing and I just thought I'd mention it.

Thanks!


jcromes@gmail.com (jcromes@gmail.com) wrote:
Quote:
I'll post the script, dialplan and how-to on the wiki as soon as I can...
Will follow up on this thread with a link once it's complete.

Thanks for the interest.
Back to top
brian at freeswitch.org
Guest





PostPosted: Sat May 30, 2009 10:36 am    Post subject: [Freeswitch-users] Conference users hear MOH until leader en Reply with quote

I would set the endconf flag in addition to the moderator flag so when you leave it kicks everyone. Smile

/b

On May 30, 2009, at 1:11 AM, jcromes@gmail.com (jcromes@gmail.com) wrote:
Quote:
Regarding #3:
Here is what I'm used to... When the (last) moderator drops, the users hear something like "the moderator has left the conference" and then get kicked back to music. If a moderator dials back in, music goes away and the users are re-joined. It's intended to be a secure conference, and the moderator is the security, right? Other conferencing systems I've worked with behave like this as well (not just Asterisk). I realize we're getting into the realm of fancy features rather than a clean conference application, so I'm already prepared take a hike. =) Could I emulate that behavior another way?

Regarding #4:
I don't have an opinion either way on the ding sounds really - it's a cosmetic thing and I just thought I'd mention it.

Thanks!


Brian West
brian@freeswitch.org (brian@freeswitch.org)



-- Meet us at ClueCon! http://www.cluecon.com
Back to top
anthony.minessale at g...
Guest





PostPosted: Mon Jun 01, 2009 8:09 am    Post subject: [Freeswitch-users] Conference users hear MOH until leader en Reply with quote

I added support so when multiple endconf users are in the same conference the total number of people with the flag must reach
0 before it kills the conf.

Can I take a small break now please Wink
That's why I'm afraid to add new stuff sometimes.


On Sat, May 30, 2009 at 9:16 PM, <jcromes@gmail.com (jcromes@gmail.com)> wrote:
Quote:
I think I can answer my own question after looking at the code...  It
seems that when THAT ONE user leaves, a flag is set that notifies the
conference thread to teardown the conference.  I guess I will have to
roll my own on this one I guess, especially since I don't want to kill
the conference completely, just drop the users back to music.

Also, more importantly...
I just discovered a number of conference profile options that are
neither documented in the Wiki nor mentioned in the sample configuration
file.  I've added entries in the Wiki for all the ones that were
missing, but I don't know what half of them do.  =(

Could someone in-the-know please fill those in?  Also, I would suggest
adding those to the sample config file.  Options like "endconf" and
"announce-user" are GREAT conference features, but no one knows they are
there!

(I had actually implemented the user count announcement within
Javascript, because I didn't know it was available.)



_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
stevecrozz at gmail.com
Guest





PostPosted: Mon Jun 01, 2009 12:11 pm    Post subject: [Freeswitch-users] Conference users hear MOH until leader en Reply with quote

No breaks! keep improving the conference app Smile

--Stephen

On Mon, Jun 1, 2009 at 6:08 AM, Anthony Minessale <anthony.minessale@gmail.com (anthony.minessale@gmail.com)> wrote:
Quote:
I added support so when multiple endconf users are in the same conference the total number of people with the flag must reach
0 before it kills the conf.

Can I take a small break now please Wink
That's why I'm afraid to add new stuff sometimes.



On Sat, May 30, 2009 at 9:16 PM, <jcromes@gmail.com (jcromes@gmail.com)> wrote:
Quote:
I think I can answer my own question after looking at the code...  It
seems that when THAT ONE user leaves, a flag is set that notifies the
conference thread to teardown the conference.  I guess I will have to
roll my own on this one I guess, especially since I don't want to kill
the conference completely, just drop the users back to music.

Also, more importantly...
I just discovered a number of conference profile options that are
neither documented in the Wiki nor mentioned in the sample configuration
file.  I've added entries in the Wiki for all the ones that were
missing, but I don't know what half of them do.  =(

Could someone in-the-know please fill those in?  Also, I would suggest
adding those to the sample config file.  Options like "endconf" and
"announce-user" are GREAT conference features, but no one knows they are
there!

(I had actually implemented the user count announcement within
Javascript, because I didn't know it was available.)



_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org







--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/


ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400



_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

Back to top
jcromes at gmail.com
Guest





PostPosted: Mon Jun 01, 2009 10:22 pm    Post subject: [Freeswitch-users] Conference users hear MOH until leader en Reply with quote

You rock!
Thanks for doing that, makes things work nicely. Although, I was in the
process of putting together a php event socket thingy to handle conference
state changes. I didn't get very far yet, but it was a good exercise!

I do appreciate your work - break granted.
Jason
--
View this message in context: http://www.nabble.com/Conference-users-hear-MOH-until-leader-enters--tp23724561p23825864.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services