OvenMedia WebRTC Publisher

WebRTC Publisher configured for OvenMediaEngine.

Advanced
Bitrate
Video Resolution (ideal)
Video Framerate (ideal)
Audio/Video Inputs
Video Input Source
Audio Input Source
Audio Output Source

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 Publisher configuration for Oven Media Engine.

Only one to many is possible for now until a custom WebSocket solution for group call peering is available.

Oven Media Engine supports P2P Delivery for subscribers. This needs to be first configured and is integrated.

If testing with the Docker image before custom compiling the server. Configure wsSecure to disable secure WebSocket with no SSL configured and transportTcp as UDP transport doesn't work to the Docker image.

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

    
   <div class="flex w-full">
          <div id="ovenmedia-publisher" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#ovenmedia-publisher", {
    "clip": {
        "live": true,
        "sources": [
            {
                "src": "stream",
                "type": "application/webrtc"
            }
        ]
    },
    "rtc": {
        "applicationName": "app",
        "autoStartDevice": true,
        "ovenmedia": {
            "policy": ""
        },
        "preferredCodecs": null,
        "publisher": true,
        "server": "ovenmedia",
        "serverURL": "rtc.electroteque.org:3334",
        "toggleScreen": true
    },
    "share": false
});
  </script>