Room streams control and record

Max

Administrator
Staff member
We raised the ticket WCS-3039 about this, and let you know result here.
As temporary solution, use to REST queries as recommended above.
 

Max

Administrator
Staff member
Good day.
Since build 5.2.982 it is possible to mute audio or change audio level and mute video while adding stream to mixer with query:
Code:
POST /rest-api/mixer/add HTTP/1.1
Host: localhost:8081
Content-Type: application/json
Content-Length: 85
 
{
 "uri": "mixer://m1",
 "remoteStreamName": "stream1",
 "audioLevel": 0,
 "videoMuted": false
}
 
Top