Set Stream Frame Rate
POST/param.cgi?post_media_video&fps_:stream_num&:framerate
Function: Sets the frame rate for a stream.
Camera Compatibility:
- Move 4K
- Link 4K
- Move SE
- Studio Pro
Example: Set Stream 1 frame rate to 30 fps
curl: curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&fps_1=30" -H "Content-Length: 0"
JavaScript: fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&fps_1=30", {method: 'POST'})
Example: Set Stream 2 frame rate to 15 fps
curl: curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&fps_2=15" -H "Content-Length: 0"
JavaScript: fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&fps_2=15", {method: 'POST'})
Request
Responses
- 200
The request has succeeded.