Re: [asterisk-users] special conference room

2013-01-16 Thread Danny Nicholas
You could set up the caller meetme where the user presses 1 to 

Exit the conference

Whisper to the moderator

Rejoin the conference

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Yves A.
Sent: Wednesday, January 16, 2013 4:35 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] special conference room

 

ok,

now i have got some very valuable information to start off with. thank you
all.
i´ll be back to report success or further questions...

just one thing, that i think might be a showstopper that i may have not
explained clear enough...:
muting and unmuting a caller should have the effect, that the caller can
talk 
to the moderator or not... any caller should NEVER hear what other callers
are talking... may he be muted or not...

yves

Am 16.01.2013 23:01, schrieb Danny Nicholas:

>From what I read, neither confbridge or meetme have the whisper feature
built-in;  This doesn’t matter because the moderator would have to use
meetmeadmin or the confbridge equivalent to control the other functions.
The moderator would either need two phones or a phone and a web interface.
Let’s say Yves’ “special conference” is .  The moderator would start
using this command

Exten => s,1,meetme()

The participants would do

Exten => s,1,meetme(,m) – muted so they can listen but not talk

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator

 

The moderator would need to be able to enumerate the conference by doing

Asterisk –rx “core show channels verbose”|grep meetme

This is supposed to be doable from the dialplan but my google-fu failed me
on it.
- the moderator must be able to mute and unmute any caller at any time

 

Establish a maximum number of users and set this up for each one

Exten => 99,1,meetmeadmin(,M,1) let user 1 talk

Exten => 199,1,meetmeadmin(,m,1) turn user 1 back off
- the moderator must be able to talk to all callers or to a specific caller.

Exten => 901,1,chanspy(SIP/XXX,w)
- the modetator must be able to kick off any caller at any time...

Exten => 299,1,meetmeadmin(,k,1) kick out user 1

Exten => 666,1,meetmeadmin(,K) shut it down




 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Don Kelly
Sent: Wednesday, January 16, 2013 3:34 PM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] special conference room

 

Sounds like a conference with all attendees permanently muted  (except the
“moderator”).

 

The moderator uses “whisper” to communicate with individuals.

--Don

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Yves A.
Sent: Wednesday, January 16, 2013 3:11 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] special conference room

 

barat and danny,

thank you for your input...
I am using asterisk 11.2 and i read about meetme. Yes, it has many switches
and options and
can help me a lot... but as you already said... "does _almost_ all
features..."... unfortunately I
need ALL the constraints fulfilled... therefore i admit I have not tried it
in deep, because just
from reading the doc I realized, that it wont fit all my needs...
btw.: I understood the "mute" switch to disable the callers to talk to the
conference.. (so to say
it mutes the callers microphone, not his earphones am I wrong? 
nevertheless... any more hints for my original feature-request?

thank you all,
yves


Am 16.01.2013 19:03, schrieb Bharat Lalcheta:

Please study meetme application's options. You will get almost all feature
you ask for in it

On Jan 16, 2013 5:37 AM, "Yves A."  wrote:

Hi list,

I am in need of a "special" asterisk conference room with the following
constraints:

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a specific caller.
- the modetator must be able to kick off any caller at any time...

Any hints on how to realize that are highly appreciated..

Thanx in advance,
yves


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users






--
_
-- Bandwidth and Colocation Provided by

Re: [asterisk-users] special conference room

2013-01-16 Thread Yves A.

ok,

now i have got some very valuable information to start off with. thank 
you all.

i´ll be back to report success or further questions...

just one thing, that i think might be a showstopper that i may have not
explained clear enough...:
muting and unmuting a caller should have the effect, that the caller can 
talk

to the moderator or not... any caller should NEVER hear what other callers
are talking... may he be muted or not...

yves

Am 16.01.2013 23:01, schrieb Danny Nicholas:


From what I read, neither confbridge or meetme have the whisper 
feature built-in;  This doesn't matter because the moderator would 
have to use meetmeadmin or the confbridge equivalent to control the 
other functions.  The moderator would either need two phones or a 
phone and a web interface.  Let's say Yves' "special conference" is 
.  The moderator would start using this command


Exten => s,1,meetme()

The participants would do

Exten => s,1,meetme(,m) -- muted so they can listen but not talk

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator

The moderator would need to be able to enumerate the conference by doing

Asterisk --rx "core show channels verbose"|grep meetme

This is supposed to be doable from the dialplan but my google-fu 
failed me on it.

- the moderator must be able to mute and unmute any caller at any time

Establish a maximum number of users and set this up for each one

Exten => 99,1,meetmeadmin(,M,1) let user 1 talk

Exten => 199,1,meetmeadmin(,m,1) turn user 1 back off
- the moderator must be able to talk to all callers or to a specific 
caller.


Exten => 901,1,chanspy(SIP/XXX,w)
- the modetator must be able to kick off any caller at any time...

Exten => 299,1,meetmeadmin(,k,1) kick out user 1

Exten => 666,1,meetmeadmin(,K) shut it down

*From:*asterisk-users-boun...@lists.digium.com 
[mailto:asterisk-users-boun...@lists.digium.com] *On Behalf Of *Don Kelly

*Sent:* Wednesday, January 16, 2013 3:34 PM
*To:* 'Asterisk Users Mailing List - Non-Commercial Discussion'
*Subject:* Re: [asterisk-users] special conference room

Sounds like a conference with all attendees permanently muted  (except 
the "moderator").


The moderator uses "whisper" to communicate with individuals.

--Don

*From:*asterisk-users-boun...@lists.digium.com 
<mailto:asterisk-users-boun...@lists.digium.com> 
[mailto:asterisk-users-boun...@lists.digium.com] 
<mailto:[mailto:asterisk-users-boun...@lists.digium.com]> *On Behalf 
Of *Yves A.

*Sent:* Wednesday, January 16, 2013 3:11 PM
*To:* Asterisk Users Mailing List - Non-Commercial Discussion
*Subject:* Re: [asterisk-users] special conference room

barat and danny,

thank you for your input...
I am using asterisk 11.2 and i read about meetme. Yes, it has many 
switches and options and
can help me a lot... but as you already said... "does _almost_ all 
features..."... unfortunately I
need ALL the constraints fulfilled... therefore i admit I have not 
tried it in deep, because just

from reading the doc I realized, that it wont fit all my needs...
btw.: I understood the "mute" switch to disable the callers to talk to 
the conference.. (so to say

it mutes the callers microphone, not his earphones am I wrong?
nevertheless... any more hints for my original feature-request?

thank you all,
yves


Am 16.01.2013 19:03, schrieb Bharat Lalcheta:

Please study meetme application's options. You will get almost all
feature you ask for in it

On Jan 16, 2013 5:37 AM, "Yves A." mailto:yves...@gmx.de>> wrote:

Hi list,

I am in need of a "special" asterisk conference room with the
following constraints:

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a
specific caller.
- the modetator must be able to kick off any caller at any time...

Any hints on how to realize that are highly appreciated..

Thanx in advance,
yves


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users



--

_

-- Bandwidth and Colocation Provided byhttp://www.api-digital.com  --

New to Asterisk? Join us for a live introductory webinar every Thurs:


Re: [asterisk-users] special conference room

2013-01-16 Thread Danny Nicholas
>From what I read, neither confbridge or meetme have the whisper feature
built-in;  This doesn't matter because the moderator would have to use
meetmeadmin or the confbridge equivalent to control the other functions.
The moderator would either need two phones or a phone and a web interface.
Let's say Yves' "special conference" is .  The moderator would start
using this command

Exten => s,1,meetme()

The participants would do

Exten => s,1,meetme(,m) - muted so they can listen but not talk

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator

 

The moderator would need to be able to enumerate the conference by doing

Asterisk -rx "core show channels verbose"|grep meetme

This is supposed to be doable from the dialplan but my google-fu failed me
on it.
- the moderator must be able to mute and unmute any caller at any time

 

Establish a maximum number of users and set this up for each one

Exten => 99,1,meetmeadmin(,M,1) let user 1 talk

Exten => 199,1,meetmeadmin(,m,1) turn user 1 back off
- the moderator must be able to talk to all callers or to a specific caller.

Exten => 901,1,chanspy(SIP/XXX,w)
- the modetator must be able to kick off any caller at any time...

Exten => 299,1,meetmeadmin(,k,1) kick out user 1

Exten => 666,1,meetmeadmin(,K) shut it down



 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Don Kelly
Sent: Wednesday, January 16, 2013 3:34 PM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] special conference room

 

Sounds like a conference with all attendees permanently muted  (except the
"moderator").

 

The moderator uses "whisper" to communicate with individuals.

--Don

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Yves A.
Sent: Wednesday, January 16, 2013 3:11 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] special conference room

 

barat and danny,

thank you for your input...
I am using asterisk 11.2 and i read about meetme. Yes, it has many switches
and options and
can help me a lot... but as you already said... "does _almost_ all
features..."... unfortunately I
need ALL the constraints fulfilled... therefore i admit I have not tried it
in deep, because just
from reading the doc I realized, that it wont fit all my needs...
btw.: I understood the "mute" switch to disable the callers to talk to the
conference.. (so to say
it mutes the callers microphone, not his earphones am I wrong? 
nevertheless... any more hints for my original feature-request?

thank you all,
yves


Am 16.01.2013 19:03, schrieb Bharat Lalcheta:

Please study meetme application's options. You will get almost all feature
you ask for in it

On Jan 16, 2013 5:37 AM, "Yves A."  wrote:

Hi list,

I am in need of a "special" asterisk conference room with the following
constraints:

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a specific caller.
- the modetator must be able to kick off any caller at any time...

Any hints on how to realize that are highly appreciated..

Thanx in advance,
yves


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users





--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

 

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] special conference room

2013-01-16 Thread Don Kelly
Sounds like a conference with all attendees permanently muted  (except the
"moderator").

 

The moderator uses "whisper" to communicate with individuals.

--Don

 

From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Yves A.
Sent: Wednesday, January 16, 2013 3:11 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] special conference room

 

barat and danny,

thank you for your input...
I am using asterisk 11.2 and i read about meetme. Yes, it has many switches
and options and
can help me a lot... but as you already said... "does _almost_ all
features..."... unfortunately I
need ALL the constraints fulfilled... therefore i admit I have not tried it
in deep, because just
from reading the doc I realized, that it wont fit all my needs...
btw.: I understood the "mute" switch to disable the callers to talk to the
conference.. (so to say
it mutes the callers microphone, not his earphones am I wrong? 
nevertheless... any more hints for my original feature-request?

thank you all,
yves


Am 16.01.2013 19:03, schrieb Bharat Lalcheta:

Please study meetme application's options. You will get almost all feature
you ask for in it

On Jan 16, 2013 5:37 AM, "Yves A."  wrote:

Hi list,

I am in need of a "special" asterisk conference room with the following
constraints:

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a specific caller.
- the modetator must be able to kick off any caller at any time...

Any hints on how to realize that are highly appreciated..

Thanx in advance,
yves


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users






--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

 

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] special conference room

2013-01-16 Thread Johan Wilfer
2013-01-16 22:10, Yves A. skrev:
> barat and danny,
> 
> thank you for your input...
> I am using asterisk 11.2 and i read about meetme. Yes, it has many
> switches and options and
> can help me a lot... but as you already said... "does _almost_ all
> features..."... unfortunately I
> need ALL the constraints fulfilled... therefore i admit I have not tried
> it in deep, because just
> from reading the doc I realized, that it wont fit all my needs...
> btw.: I understood the "mute" switch to disable the callers to talk to
> the conference.. (so to say
> it mutes the callers microphone, not his earphones am I wrong?
> nevertheless... any more hints for my original feature-request?
> 
> thank you all,
> yves
> 
>> I am in need of a "special" asterisk conference room with the
>> following constraints:
>>
>> - there is one admin / moderator and several "normal" callers.
>> - the callers must not hear any other caller, only the moderator
>> - the moderator must be able to mute and unmute any caller at any time
>> - the moderator must be able to talk to all callers or to a
>> specific caller.
>> - the modetator must be able to kick off any caller at any time...
>>
>> Any hints on how to realize that are highly appreciated..
>>

You can do all this with Meetme, ChanSpy and ChannelRedirect. You could
also use the AMI variants of the above commands. Maybe you could use
Confbridge that is intended to replace Meetme.

So the simple answer is yes, this can be done.


-- 
Johan Wilfer


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] special conference room

2013-01-16 Thread Yves A.

barat and danny,

thank you for your input...
I am using asterisk 11.2 and i read about meetme. Yes, it has many 
switches and options and
can help me a lot... but as you already said... "does _almost_ all 
features..."... unfortunately I
need ALL the constraints fulfilled... therefore i admit I have not tried 
it in deep, because just

from reading the doc I realized, that it wont fit all my needs...
btw.: I understood the "mute" switch to disable the callers to talk to 
the conference.. (so to say

it mutes the callers microphone, not his earphones am I wrong?
nevertheless... any more hints for my original feature-request?

thank you all,
yves


Am 16.01.2013 19:03, schrieb Bharat Lalcheta:


Please study meetme application's options. You will get almost all 
feature you ask for in it


On Jan 16, 2013 5:37 AM, "Yves A." > wrote:


Hi list,

I am in need of a "special" asterisk conference room with the
following constraints:

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a
specific caller.
- the modetator must be able to kick off any caller at any time...

Any hints on how to realize that are highly appreciated..

Thanx in advance,
yves


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users



--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] special conference room

2013-01-16 Thread Bharat Lalcheta
Please study meetme application's options. You will get almost all feature
you ask for in it
On Jan 16, 2013 5:37 AM, "Yves A."  wrote:

> Hi list,
>
> I am in need of a "special" asterisk conference room with the following
> constraints:
>
> - there is one admin / moderator and several "normal" callers.
> - the callers must not hear any other caller, only the moderator
> - the moderator must be able to mute and unmute any caller at any time
> - the moderator must be able to talk to all callers or to a specific
> caller.
> - the modetator must be able to kick off any caller at any time...
>
> Any hints on how to realize that are highly appreciated..
>
> Thanx in advance,
> yves
>
>
> --
> __**__**_
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> New to Asterisk? Join us for a live introductory webinar every Thurs:
>   http://www.asterisk.org/hello
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>   
> http://lists.digium.com/**mailman/listinfo/asterisk-**users
>
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] special conference room

2013-01-16 Thread Danny Nicholas
-Original Message-
From: asterisk-users-boun...@lists.digium.com
[mailto:asterisk-users-boun...@lists.digium.com] On Behalf Of Yves A.
Sent: Tuesday, January 15, 2013 6:07 PM
To: asterisk-users@lists.digium.com
Subject: [asterisk-users] special conference room

Hi list,

I am in need of a "special" asterisk conference room with the following
constraints:

- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a specific caller.
- the modetator must be able to kick off any caller at any time...

Any hints on how to realize that are highly appreciated..

Thanx in advance,
yves

Hint 1 - specify your Asterisk version since these capabilities change
availabilities between releases.
Hint 2 - you can have the moderator enter the conference normally and
everyone else enter muted
Hint 3 - the moderator should probably have a web interface to accomplish
the other tasks
Hint 4 - refer to this link -
https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+Application_ConfBridg
e



--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] special conference room

2013-01-15 Thread Yves A.

Hi list,

I am in need of a "special" asterisk conference room with the following 
constraints:


- there is one admin / moderator and several "normal" callers.
- the callers must not hear any other caller, only the moderator
- the moderator must be able to mute and unmute any caller at any time
- the moderator must be able to talk to all callers or to a specific caller.
- the modetator must be able to kick off any caller at any time...

Any hints on how to realize that are highly appreciated..

Thanx in advance,
yves


--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
  http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users