Interface EncodedVideoChunk

    interface EncodedVideoChunk {
        byteLength: number;
        duration: number;
        timestamp: number;
        type: EncodedVideoChunkType;
        copyTo(destination: AllowSharedBufferSource): void;
    }

    Properties

    byteLength: number
    duration: number
    timestamp: number

    Methods