pixel-streaming-server
v1.2.2
Published
Signalling Web Server for Unreal Engine
Downloads
6
Readme
Signalling Web Server for Unreal Engine v4.27 & v5.0
Unreal Engine v4.27
import pixe_streaming_server from 'pixel-streaming-server'
pixe_streaming_server.u4({
"UseFrontend": false,
"UseMatchmaker": true,
"UseHTTPS": false,
"UseAuthentication": false,
"LogToFile": true,
"HomepageFile": "/public/player.html",
"AdditionalRoutes": {},
"EnableWebserver": true,
"enableLifecycleManagement": false,
"MatchmakerAddress": "",
"MatchmakerPort": "9999",
"PublicIp": "localhost",
"HttpPort": 80,
"HttpsPort": 443,
"StreamerPort": 8888,
"subscriptionId": "",
"resourceGroup": "",
"virtualMachineScaleSet": "",
"appInsightsInstrumentationKey": "",
"unrealAppName": "PixelStreamingDemo",
"region": "",
"peerConnectionConfig": {
"iceServers": [
{
"urls": [
"stun:stun.l.google.com: 19302"
]
}
]
}
})
Unreal Engine v5.0
import pixe_streaming_server from 'pixel-streaming-server'
pixe_streaming_server.u5({
"UseFrontend": false,
"UseMatchmaker": false,
"UseHTTPS": false,
"UseAuthentication": false,
"LogToFile": false,
"LogVerbose": true,
"HomepageFile": "/public/player.html",
"AdditionalRoutes": {},
"EnableWebserver": true,
"MatchmakerAddress": "",
"MatchmakerPort": "9999",
"PublicIp": "localhost",
"HttpPort": 80,
"HttpsPort": 443,
"StreamerPort": 8888,
"SFUPort": 8889,
"peerConnectionConfig": {
"iceServers": [
{
"urls": [
"stun:stun.l.google.com: 19302"
]
}
]
}
})