Set Stream QFactor
POST/param.cgi?post_media_video&qfactor_:stream_num&:qfactor
Function: Sets the MJPEG QFactor for a stream (1-99). Only applies if protocol is set to MJPEG.
Camera Compatibility:
- Move 4K
- Link 4K
Example: Set Stream 1 QFactor to 50
curl:
curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&qfactor_1=50" -H "Content-Length: 0"
JavaScript:
fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&qfactor_1=50", \{method: 'POST'\})
Example: Set Stream 2 QFactor to 70
curl:
curl -X POST "http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&qfactor_2=70" -H "Content-Length: 0"
JavaScript:
fetch("http://CAMERA-IP/cgi-bin/param.cgi?post_media_video&qfactor_2=70", \{method: 'POST'\})
Request
Responses
- 200
The request has succeeded.