Wowza Video WebRTC Subscriber

WebRTC Subscriber configured for Wowza Video at Scale.

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 Wowza Video as scale.

OBS RTMP Encoder to WebRTC subscribing is supported if Browser based WebRTC publishing is not desired. See the Millicast Encoder Settings documentation for setting up the encoder.

A subcriber token is desirable to restrict WebRTC plaback. That can be used to configure the subToken config. Wowza Video console provides the generated subscriber token.

{
  "wowzavideo": {
    "subToken": ""
  }
}
    
   <div class="flex w-full">
          <div id="wowzavideo-subscriber" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#wowzavideo-subscriber", {
    "clip": {
        "live": true,
        "sources": [
            {
                "src": "C6Lx6ku6FEXgKtt",
                "type": "application/webrtc"
            }
        ]
    },
    "rtc": {
        "server": "wowza-video"
    },
    "share": false,
    "wowzavideo": {
        "subToken": "b23ebffd67a92feff751983ad91c4ddfd83285b5a3b899cffbab1d28275dce44"
    }
});
  </script>