WebRTC Subscriber

Playing back WebRTC streams

This example demonstrates setting up the WebRTC subscriber player.

    <div class="flex w-full h-auto my-auto">
      <video class="video-js vjs-default-skin vjs-fluid " crossorigin="anonymous" controls="" id="subscriber"></video>
  </div>
  <script type="text/javascript">
  	var player = videojs("subscriber", {
    "plugins": {
        "peakmeter": {},
        "rtcsubscriber": {
            "applicationName": "webrtc",
            "debug": true,
            "server": "wowza",
            "serverURL": "rtc.electroteque.org",
            "subscribeToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ3ZWJydGMiLCJpYXQiOjE2MzczMzAyNTksImV4cCI6MTY2ODg2NjI1OSwiYXVkIjoid3d3LmV4YW1wbGUuY29tIiwic3ViIjoianJvY2tldEBleGFtcGxlLmNvbSIsInN0cmVhbU5hbWUiOiJDNkx4Nmt1NkZFWGdLdHQifQ.4_38rdgyqWabGvoV6WZREjrqevVeGIgCKK7xOknwGx4",
            "userData": {
                "param1": "value1"
            }
        }
    },
    "rtc": {
        "applicationName": "webrtc",
        "debug": true,
        "server": "wowza",
        "serverURL": "rtc.electroteque.org",
        "userData": {
            "param1": "value1"
        }
    },
    "sources": [
        {
            "appName": "webrtc",
            "src": "myStream",
            "type": "application/webrtc"
        },
        {
            "src": "http://rtc.electroteque.org:1935/webrtc/myStream_360p/playlist.m3u8",
            "type": "application/x-mpegurl"
        }
    ]
});




      player.on("resume", (e) => {
//selected device has been activated
console.log("Subscribe Start ");
});
player.on("finish", (e) => {
console.log("Subscribe Stop ");
});
player.on("sendmessage", (e, message) => {
console.log("Signal Server Send Message: ", message);
});
player.on("gotmessage", (e, message) => {
console.log("Signal Server Receive Message: ", message);
});
player.on("offer", (e, offer) => {
console.log("WebRTC Offer ", offer.sdp);
});
player.on("answer", (e, answer) => {
console.log("WebRTC Answer ", answer.sdp);
});
player.on("resize", (e) => {
console.log("Receiving Video Size ", { width: player.videoWidth(), height: player.videoHeight()});
});
player.on("data", (e, data) => {
console.log("GOT DATA: ", data);
});
  </script>