Skip to main content

Set Stream Bitrate

POST 

/param.cgi?post_media_video&bps_:stream_num&:bitrate

Function: Sets the video bitrate for a stream (in kbps).

Camera Compatibility:

  • Move 4K
  • Link 4K
  • Move SE
  • Studio Pro

Example: Set Stream 1 bitrate to 6000 kbps

curl:

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

JavaScript:

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

Example: Set Stream 2 bitrate to 2048 kbps

curl:

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

JavaScript:

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

Request

Responses

The request has succeeded.