Open Broadcast Software as stream source

Max

Administrator
Staff member
Hello
By default, /connect is only REST method that reacts on 403 response.
Other REST methods ignore 4xx responses by default.
You have to configure /publishStream method additionally as described here.
So you need to return following JSON field on /connect
Code:
"restClientConfig":
  {
     "publishStream":
     {
        "restExclude":"",
        "clientExclude":"",
        "restOnError":"FAIL",
        "restPolicy":"NOTIFY",
        "restOverwrite":""
     }
  }
Here you set "restOnError":"FAIL".
Then publishing should be rejected.
 

Max

Administrator
Staff member
Hello
To enable recording for these streams (RTMP, RTMFP), you have to add this setting in flashphoner.properties:
Code:
record_flash_published_streams=true
Then do WCS restart
Code:
service webcallserver restart
 
Top