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

M2tsSegmentationStyle

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

The segmentation style parameter controls how segmentation markers are inserted into the transport stream. With avails, it is possible that segments may be truncated, which can influence where future segmentation markers are inserted. When a segmentation style of "reset_cadence" is selected and a segment is truncated due to an avail, we will reset the segmentation cadence. This means the subsequent segment will have a duration of of $segmentation_time seconds. When a segmentation style of "maintain_cadence" is selected and a segment is truncated due to an avail, we will not reset the segmentation cadence. This means the subsequent segment will likely be truncated as well. However, all segments after that will have a duration of $segmentation_time seconds. Note that EBP lookahead is a slight exception to this rule.

type M2tsSegmentationStyle = "MAINTAIN_CADENCE" | "RESET_CADENCE" | cmnP.UnexpectedEnumValue;

§Type

§
"MAINTAIN_CADENCE" | "RESET_CADENCE" | cmnP.UnexpectedEnumValue
[src]