Interface VideoChunk

A chunk of video data returned from the video service

interface VideoChunk {
    requestId: string;
    videoContainer: string;
    videoData: Uint8Array;
}

Properties

requestId: string

Request ID to match this response to its request

videoContainer: string

Container format (e.g., "mp4", "fmp4")

videoData: Uint8Array

Video data chunk