Skip to content

Basler Vision Connector Messaging: Stopping Image Streaming#

With the Basler Vision Connector you can control the image streaming by starting and stopping the image stream. The control doesn't affect any camera property, including the trigger definitions. If you want to change these camera properties, see the messages described in Setting Camera Quick Parameters.

This command terminates camera image streaming. It's not considered an error, if the camera with this DeviceID isn't streaming at the moment or if streaming had already been stopped. An appropriate message is provided in the response.

When streaming is stopped either automatically or via the StopStreaming command, the Basler Vision Connector sends the message code 0x00000003. See also Message Codes(#info-message-codes).

JSON Payload#

Field Optional Type Description
TransactionID Yes String Transaction identification
Action No String Method called. Fixed value: StopStreaming
DeviceID No String Device identification
{
    "TransactionID": "32143242356465",
    "Action": "StopStreaming",
    "DeviceID": "548451887"
}

Response Object#

Field Optional Type Description
TransactionID Yes String Transaction identification
ReturnCode No Integer (32-bit unsigned) Message code following Message Codes
Message Yes String Response message
{
    "TransactionID": "32143242356465",
    "ReturnCode": 0,
    "Message": "Stream stopped."
}