Set Stream I Keyframe Interval
POST/param.cgi?post_media_video&gop_:stream_num&:keyframe_interval
Function: Sets the I-frame (keyframe) interval for a stream.
Camera Compatibility:
- Move 4K
- Link 4K
- Move SE
- Studio Pro
Example: Set Stream 1 keyframe interval to 60 frames
curl: curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&gop_1=60" -H "Content-Length: 0"
JavaScript: fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&gop_1=60", {method: 'POST'})
Example: Set Stream 2 keyframe interval to 30 frames
curl: curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&gop_2=30" -H "Content-Length: 0"
JavaScript: fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&gop_2=30", {method: 'POST'})
Request
Responses
- 200
The request has succeeded.