Kurento Media WebRTC Group Call

WebRTC Conferencing for Kurento Media Server. Second participant.

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.

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

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-2" class="has-settings"></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#kurento-conference-2", {
    "clip": {
        "live": true,
        "sources": [
            {
                "src": "djq574AA8FHQUEFD",
                "type": "application/webrtc"
            }
        ],
        "title": "Participant 2"
    },
    "rtc": {
        "applicationName": "groupcall",
        "autoStartDevice": true,
        "buttons": false,
        "channelName": "kurentodata",
        "conference": {
            "container": "#conference-container"
        },
        "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>