var videoParams = new VideoParams
{
CameraId = cameraId,
StreamId = streamId,
DestWidth = destinationWidth,
DestHeight = destinationHeight,
StreamType = StreamParamsHelper.StreamType.Transcoded,
SignalType = StreamParamsHelper.SignalType.Live,
CompressionLvl = 83,
FPS = 15,
RequestSize = true,
MethodType = StreamParamsHelper.MethodType.Push,
KeyFramesOnly = false,
};
When I request a stream with StreamId, StreamId is ignored, and Iām getting the default video stream from the camera. Is that correct behavior? Or how can I get the video with the correct chosen from the camera?