Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Fragment

import type { Fragment } from "https://aws-api.deno.dev/v0.4/services/kinesisvideoarchivedmedia.ts?docs=full";

Represents a segment of video or other time-delimited data.

interface Fragment {
FragmentLengthInMilliseconds?: number | null;
FragmentNumber?: string | null;
FragmentSizeInBytes?: number | null;
ProducerTimestamp?: Date | number | null;
ServerTimestamp?: Date | number | null;
}

§Properties

§
FragmentLengthInMilliseconds?: number | null
[src]

The playback duration or other time value associated with the fragment.

§
FragmentNumber?: string | null
[src]

The unique identifier of the fragment. This value monotonically increases based on the ingestion order.

§
FragmentSizeInBytes?: number | null
[src]

The total fragment size, including information about the fragment and contained media data.

§
ProducerTimestamp?: Date | number | null
[src]

The timestamp from the producer corresponding to the fragment.

§
ServerTimestamp?: Date | number | null
[src]

The timestamp from the AWS server corresponding to the fragment.