OvenMedia WebRTC Group Call

WebRTC Conferencing for OvenMediaEngine. 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 Ovenmediaengine.

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

Supplied is a demo WebSocket signalling node server. To provide group room features for OME. Within the signal server, this will do a client call to the OME rest API to obtain a subscribe stream. The endpoint for this service is groupcall

Configured is a Signed Policy token config for providing stream security if setup in the server.

    
   <div class="flex w-full">
          <div id="ovenmedia-conference-2" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#ovenmedia-conference-2", {
    "clip": {
        "live": true,
        "sources": [
            {
                "src": "jq574AA8FHQUEFD",
                "type": "application/webrtc"
            }
        ],
        "title": "Participant 2"
    },
    "ovenmedia": {
        "roomServerURL": "rtc.electroteque.org:8444/group-call",
        "transportTcp": true
    },
    "rtc": {
        "applicationName": "app",
        "autoStartDevice": true,
        "buttons": false,
        "conference": {
            "container": "#conference-container"
        },
        "debug": true,
        "ovenmedia": {
            "policy": "",
            "roomServerURL": "rtc.electroteque.org:8444/groupcall",
            "transportTcp": true
        },
        "preferredCodecs": null,
        "publisher": true,
        "roomName": "room1",
        "seperateScreen": true,
        "server": "ovenmedia-conference",
        "serverURL": "127.0.0.1:3333",
        "verticalMeter": false,
        "wsSecure": 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>