Skip to main content

Set Stream Bitrate Control Mode

POST 

/param.cgi?post_media_video&rcmode_:stream_num&:control_mode

Function: Sets the bitrate control mode for a stream (CBR or VBR).

Camera Compatibility:

  • Move 4K
  • Link 4K

Example: Set Stream 1 to variable bitrate mode

curl: curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&rcmode_1=VBR" -H "Content-Length: 0"

JavaScript: fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&rcmode_1=VBR", {method: 'POST'})

Example: Set Stream 2 to constant bitrate mode

curl: curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&rcmode_2=CBR" -H "Content-Length: 0"

JavaScript: fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&rcmode_2=CBR", {method: 'POST'})

Request

Responses

The request has succeeded.