Kurento Media WebRTC Group Call

WebRTC Conferencing master for Kurento Media Server.

Note: Not a live demo, server configuration is just for example. For live working example try the Millicast Publisher and Subscriber example. Or AWS Kinesis Publisher and Subscriber example.

Note: To feature a participant select them first or add their stream name to the api method arguments.

WebRTC Conferencing configuration for Kurento Media Server. The endpoint for the demo backend service for conferencing is groupcall

Conferencing master participant. Using the conferencing plugin an api is provided to feature and mute a selected participant.

The config roomName is required to connect to a specific room.

Supplied is a custom example websocket signal server Wowza provider project for one to many and group call features.

    
   <div class="flex w-full">
          <div id="kurento-conference-1" class="has-settings"></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#kurento-conference-1", {
    "clip": {
        "live": true,
        "sources": [
            {
                "src": "C6Lx6ku6FEXgKtt",
                "type": "application/webrtc"
            }
        ],
        "title": "Participant 1"
    },
    "rtc": {
        "applicationName": "groupcall",
        "autoStartDevice": true,
        "buttons": false,
        "channelName": "kurentodata",
        "conference": {
            "container": "#conference-container",
            "master": true
        },
        "dataChannel": true,
        "dataSubscriber": true,
        "iceServers": [
            {
                "urls": [
                    "stun:stun.l.google.com:19302",
                    "stun:stun1.l.google.com:19302",
                    "stun:stun2.l.google.com:19302",
                    "stun:stun3.l.google.com:19302",
                    "stun:stun4.l.google.com:19302"
                ]
            }
        ],
        "publishResumeable": true,
        "publisher": true,
        "publisherStopDelay": 60,
        "roomName": "room1",
        "seperateScreen": true,
        "server": "kurento-conference",
        "serverURL": "rtc.electroteque.org:8444",
        "verticalMeter": false
    },
    "share": false
});

player.on("selectedParticipant", (e, participant) => {
console.log("selected participant", participant);
}).on("unselectedParticipant", (e, participant) => {
console.log("unselected participant", participant);
}).on("participantleft", (e, sender) => {
}).on("participantfeatured", (e, sender) => {
}).on("participantunfeatured", (e, sender) => {
}).on("leaveroom", e => {
}).on("roomjoinfailed", e => {
}).on("existingparticipants", (e, sender) => {
});
  </script>