Skip to main content

Set Stream Resolution

POST 

/param.cgi?post_media_video&size_:stream_num&:resolution

Function: Sets the resolution for a stream.

Camera Compatibility:

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

Available resolutions depend on which stream you're configuring:

  • Stream 1: All resolutions available
  • Stream 2: Limited to smaller resolutions

Example: Set Stream 1 resolution to 1080p

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

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

Example: Set Stream 2 resolution to 720p

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

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

Request

Responses

The request has succeeded.