Skip to main content

Image stabilization API

Description

The Image stabilization API lets you control different aspects of image stabilization. You can view values related to the current status of the image stabilization including if image stabilization is enabled, which type of image stabilization is configured as well as the configured values for EIS (Electrical Image Stabilization). You can also perform start or stop operations to enable or disable image stabilization.

The type of image stabilization can be changed between EIS and OIS (Optical Image Stabilization) on a supported device. Additional values can also be configured for EIS. The EIS specific values are margin, focal length and if demo mode should be enabled.

Identification

  • API discovery: id=image-stabilization

Obsoletes

EIS related parameters Stabilizer, StabilizerMargin, and StabilizerFocalLength in param.cgi are obsoleted.

Use cases

Enable image stabilization

  1. Send a getEnabled request with params.id=0.
  2. Read the getEnabled response to know if image stabilization is enabled.
  3. Send a setEnabled request with params.id=0 and enabled=true to enable image stabilization.
  4. Read the setEnabled response.

Set image stabilization type to OIS

  1. Send a getType request with params.id=0.
  2. Read the getType response to know which type of image stabilization is currently configured.
  3. Send a getCapabilities request.
  4. Read the getCapabilities response to know if OIS is supported.
  5. Send a setType request with params.id=0 and type=OIS.
  6. Read the setType response.

Set manual focal length

  1. Send a getCapabilities request.
  2. Read the getCapabilities response to know if manual focal length is supported.
  3. Send a setEISFocalLength request with params.id=0 and specified focalLength.
  4. Read the setEISFocalLength response.

API specification

getSupportedVersions

Use this method to get a list of supported major and minor API versions.

Request

  • Permission: Admin, Operator, Viewer
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "getSupportedVersions"
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"context": "my context",
"method": "getSupportedVersions",
"data": {
"apiVersions": [
"1.0",
"1.1"
]
}
}
ParametersTypeDescription
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
apiVersionsArrayThe supported API versions presented in the format "Major.Minor".

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getSupportedVersions",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

getCapabilities

Use this method to list the image stabilization capabilities supported by your device.

Request

  • Permission: Admin, Operator, Viewer
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "getCapabilities"
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getCapabilities",
"data": {
"channels": [
{
"id": 0,
"EISSupport": true,
"OISSupport": false,
"manualFocalLength": true,
"minFocalLength": 7000,
"maxFocalLength": 70000
},
{
"id": 1,
"EISSupport": true,
"OISSupport": false,
"manualFocalLength": false
}
]
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.channelsArrayAn array of image stabilization settings.
data.channels.idIntegerThe ID of the camera image channel.
data.channels.EISSupportBooleanIndicates if the camera supports EIS.
data.channels.OISSupportBooleanIndicates if the camera supports OIS.
data.channels.manualFocalLengthBooleanIndicates if focal length is configured manually.
data.channels.minFocalLengthIntegerThe minimum value for focal length with a range between 4000-120000. Only available when manualFocalLength= true.
data.channels.maxFocalLengthIntegerThe maximum value for focal length with a range between 4000-120000. Only available when manualFocalLength= true.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getCapabilities",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

getEnabled

Use this method to check if image stabilization is enabled or not.

Request

  • Permission: Admin, Operator, Viewer
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "getEnabled",
"params": {
"id": 0
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getEnabled",
"data": {
"enabled": true
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.enabledBooleanIndicates if image stabilization is enabled.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getEnabled",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

setEnabled

Use this method to enable or disable image stabilization.

Request

  • Permission: Admin, Operator
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "setEnabled",
"params": {
"id": 0,
"enabled": true
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.
params.enabledBooleantrue to enable image stabilization. false to disable image stabilization.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "setEnabled",
"data": {}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "setEnabled",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

getType

Use this method to get which type of image stabilization (EIS or OIS) is configured for your device.

Request

  • Permission: Admin, Operator, Viewer
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "getType",
"params": {
"id": 0
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getType",
"data": {
"type": "EIS"
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.typeStringThe type of image stabilization configured. Enum values: EIS, OIS

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "getType",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

setType

Use this method to configure which type of image stabilization (EIS or OIS) for your device.

Request

  • Permission: Admin, Operator
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "setType",
"params": {
"id": 0,
"type": "EIS"
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.
params.typeIntegerSpecify the type of image stabilization to configure. Enum values: EIS, OIS

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "setType",
"data": {}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "setType",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

getEISMargin

Use this method to get the configured margin for EIS. Return "Method not supported" if EIS is not supported.

Request

  • Permission: Admin, Operator, Viewer
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "getEISMargin",
"params": {
"id": 0
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getEISMargin",
"data": {
"margin": 4000
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.marginIntegerThe configured margin for EIS with a range between 0–9999.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "getEISMargin",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

setEISMargin

Use this method to configure margin for EIS. Return "Method not supported" if EIS is not supported.

Request

  • Permission: Admin, Operator
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "setEISMargin",
"params": {
"id": 0,
"margin": 4000
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.
data.marginIntegerSpecify the margin for EIS with a range between 0–9999.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getEISMargin",
"data": {
"margin": 4000
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.marginIntegerThe configured margin for EIS with a range between 0–9999.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "setEISMargin",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

getEISFocalLength

Use this method to get the manually configured focal length for EIS. Return "Method not supported" if EIS or manual focal length is not supported.

Request

  • Permission: Admin, Operator, Viewer
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "getEISFocalLength",
"params": {
"id": 0
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getEISFocalLength",
"data": {
"focalLength": 10000
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.focalLengthIntegerThe configured focal length for EIS with a range between minFocalLength and maxFocalLength.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "getEISFocalLength",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

setEISFocalLength

Use this method to manually configure focal length for EIS. Return "Method not supported" if EIS or manual focal length is not supported.

Request

  • Permission: Admin, Operator
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "setEISFocalLength",
"params": {
"id": 0,
"focalLength": 10000
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.
params.focalLengthIntegerSpecify the focal length to configure with a range between minFocalLength and maxFocalLength.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "setEISFocalLength",
"data": {}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "setEISFocalLength",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

getEISDemo

Use this method to check if demo is enabled for EIS. Return "Method not supported" if EIS is not supported.

Request

  • Permission: Admin, Operator, Viewer
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "getEISDemo",
"params": {
"id": 0
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "getEISDemo",
"data": {
"demo": false
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.demoBooleanIndicates if demo is enabled.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "getEISDemo",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

setEISDemo

Use this method to enable or disable demo for EIS. Return "Method not supported" if EIS is not supported.

Request

  • Permission: Admin, Operator
  • Method: POST
  • Content-Type: application/json
{
"apiVersion": "1",
"context": "my context",
"method": "setEISDemo",
"params": {
"id": 0,
"demo": false
}
}
ParameterTypeDescription
apiVersionStringThe API version to use (optional).
contextStringThe user sets this value and the application echoes it back in the response (optional).
methodStringThe method that should be used.
paramsObjectContainer for the method specific parameters listed below.
params.idIntegerThe ID of the camera image channel.
params.demoBooleantrue to enable demo. false to disable demo.

Return value - Success

  • HTTP Code: 200 OK
  • Content-Type: application/json
{
"apiVersion": "1.0",
"context": "my context",
"method": "setEISDemo",
"data": {
"demo": false
}
}
ParametersTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional).
methodStringThe method that was performed.
dataObjectContains response specific parameters.
data.demoBooleanIndicates if demo is enabled.

Return value - Failure

  • HTTP Code: 400 Bad request, 401 Authentication failed, 403 Authorization failed
  • Content-Type: application/json
{
"apiVersion": "Major.Minor",
"context": "my context",
"method": "setEISDemo",
"error": {
"code": <integer error code>,
"message": "The error message"
}
}
ParameterTypeDescription
apiVersionStringThe API version that was used.
contextStringA text string that will be echoed back as long as it was provided by the user in the corresponding request (optional). Only available for 403 error.
methodStringThe performed method. Only available for 403 error.
errorObjectThe error object.
error.codeIntegerThe error code.
error.messageStringThe error message for the corresponding error code.

Error codes

See General error codes for a list of potential errors.

General error codes

This table lists the general error codes that can occur for any API method. Method specific errors are listed under the respective descriptions.

CodeDescription
1100Internal error.
1200Invalid stabilization type.
2101Invalid JSON.
2102Method not supported.
2103Required parameter missing.
2104Invalid parameter value specified.
2105Authorization failed.
2106Authentication failed.
2100API version not supported.