is there a “function” that announces the list of the participants in a conference?
For example: Alice and Bob join the conference, when Tom joins the conference he would like to know who has already joined the meeting. How can Tom know this information? Is there a function that announces all the registered message (when Alice and Bod joined the conference they have registered their name and surname)?
You will need do save user count and informastion that join or exit from the conference on a DB, then before adding a new user to the conference verify the information and play it to the user before run the confbridge() app
Counting users on a conf
asterisk -x " confbridge list 5001" | awk ‘{print $1}’ | grep -w SIP | wc -l
Agreed with that just posted it that mode to show him how to combine linux commands with Asterisk, because he will need it for what he wants unless he do it all using phpagi class or other library
I forgot to say I’m using javascript, btw i’ve found a solution. Enabling the confbridge messages asterisk will log activity like join, welcome and leave on websocket events. So i handle those and i know exactly what’s gonna happen.
Thx for all