VideoSubscriptionOptions

Video subscription settings.

public class VideoSubscriptionOptions:OptionalJsonParse
    {
        public Optional<VIDEO_STREAM_TYPE> type = new Optional<VIDEO_STREAM_TYPE>();

        public Optional<bool> encodedFrameOnly = new Optional<bool>();
    }

Properties

type
Type of video stream to subscribe to. The default value is VIDEO_STREAM_HIGH, which subscribes to the high-quality video stream. See VIDEO_STREAM_TYPE.
encodedFrameOnly
Whether to subscribe only to the encoded video stream:
  • true: Subscribe only to encoded video data (structured data). The SDK does not decode or render this video data.
  • false: (Default) Subscribe to both raw and encoded video data.