Skip to content

VideoSource

type VideoSource =
| {
type: "videoSourceBytes";
bytes: Uint8Array;
}
| {
type: "videoSourceS3Location";
s3Location: S3Location;
};

Defined in: src/types/media.ts:218

Source for a video (Class version).