is it possible Screen sharing to rtmp re-stream ?

Max

Administrator
Staff member
Good day.
You can use REST API to republish screen sharing stream (or any stream published to server) to RTMP server
Code:
POST /rest-api/push/startup HTTP/1.1
Content-Type: application/json
 
{
    "streamName": "screen",
    "rtmpUrl":"rtmp://rtmp_server:1935/live"
}
 
Top