Kurento Media WebRTC Subscriber

WebRTC Subscriber configured 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.

WebRTC Subscriber configuration for Kurento Media Server. The endpoint for the demo backend service is one2many.

Supplied is a java backend spring service. Offering the one2many web socket application. Which talks to the Kurento server using the Kurento client API.

    <div class="flex w-full h-auto my-auto">
          <div id="kurento-subscriber" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = jwplayer("kurento-subscriber").setup({
    "aspectratio": "16:9",
    "playbackRateControls": true,
    "plugins": {
        "../../js/webrtcsubscriber-8.20.0.js": {}
    },
    "sources": [
        {
            "appName": "webrtc",
            "file": "C6Lx6ku6FEXgKtt",
            "live": true,
            "type": "mp4"
        }
    ],
    "subscriber": {
        "applicationName": "one2many",
        "channelName": "kurentodata",
        "dataChannel": 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"
                ]
            }
        ],
        "server": "kurento",
        "serverURL": "rtc.electroteque.org:8443"
    },
    "width": "100%"
});
  </script>