ExtendedCamera.getStreamStatus Method¶
Module: ExtendedCamera
Definition¶
Queries the current status (enabled/disabled) of a specific stream.
get_stream_status(self, stream_name: str) -> bool
Parameters
stream_namestrin The stream whose status is being checked.
Returns
boolOutputs the stream’s current state, indicating whether it is active.
Exceptions
An error has occurred during Devices Library execution.
bool getStreamStatus(String? streamName)
Parameters
streamNameStringin The stream whose status is being checked.
Returns
boolOutputs the stream’s current state, indicating whether it is active.
Exceptions
An error has occurred during Devices Library execution.
public bool GetStreamStatus(string streamName)
Parameters
streamNamestringin The stream whose status is being checked.
Returns
boolOutputs the stream’s current state, indicating whether it is active.
Exceptions
An error has occurred during Devices Library execution.
public boolean getStreamStatus(String streamName) throws DevicesException
Parameters
streamNameStringin The stream whose status is being checked.
Returns
booleanOutputs the stream’s current state, indicating whether it is active.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesExtendedCamera_GetStreamStatus (
    ID3_DEVICES_EXTENDED_CAMERA hExtendedCamera,
    const char * streamName,
    bool * status)
Parameters
hExtendedCameraID3_DEVICES_EXTENDED_CAMERAin Handle to the ExtendedCamera object.streamNameconst char *in The stream whose status is being checked.statusbool *out Outputs the stream’s current state, indicating whether it is active.
Returns