UnrealMedia WebRTC Publisher

WebRTC Publisher configured for Unreal Media Server.

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

WebRTC publisher for Unreal Media Server. A password is required to be configured using the publishToken config.

    <div class="flex w-full h-auto my-auto">
          <div id="unrealmedia-publisher" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = jwplayer("unrealmedia-publisher").setup({
    "aspectratio": "16:9",
    "playbackRateControls": true,
    "plugins": {
        "../../js/webrtcpeakmeter-8.20.0.js": {},
        "../../js/webrtcpublisher-8.20.0.js": {
            "applicationName": "webrtc_publish",
            "autoStartDevice": true,
            "preferredCodecs": {
                "audio": {
                    "codec": "opus"
                },
                "video": {
                    "codec": "H264"
                }
            },
            "publisher": true,
            "server": "unrealmedia",
            "serverURL": "127.0.0.1:5119",
            "toggleScreen": true,
            "unrealmedia": {
                "publicIp": "127.0.0.1",
                "publishToken": "livestream",
                "singlePort": true,
                "transportTcp": false
            },
            "wsSecure": false
        }
    },
    "sources": [
        {
            "appName": "webrtc",
            "file": "livestream",
            "live": true,
            "publisher": true,
            "type": "mp4"
        }
    ],
    "width": "100%"
});
  </script>