Interface VideoCaptureAndEncodeParameter

[[VideoCaptureAndEncodeParameter]] encapsulates video parameters for capturing and encoding

interface VideoCaptureAndEncodeParameter {
    captureFrameRate(): number;
    captureHeight(): number;
    captureWidth(): number;
    clone(): VideoCaptureAndEncodeParameter;
    encodeBitrates(): number[];
    encodeHeights(): number[];
    encodeWidths(): number[];
    equal(other: VideoCaptureAndEncodeParameter): boolean;
}

Implemented by

Methods