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

HlsImageBasedTrickPlay

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

Specify whether MediaConvert generates images for trick play. Keep the default value, None (NONE), to not generate any images. Choose Thumbnail (THUMBNAIL) to generate tiled thumbnails. Choose Thumbnail and full frame (THUMBNAIL_AND_FULLFRAME) to generate tiled thumbnails and full-resolution images of single frames. MediaConvert creates a child manifest for each set of images that you generate and adds corresponding entries to the parent manifest. A common application for these images is Roku trick mode. The thumbnails and full-frame images that MediaConvert creates with this feature are compatible with this Roku specification: https://developer.roku.com/docs/developer-program/media-playback/trick-mode/hls-and-dash.md

type HlsImageBasedTrickPlay =
| "NONE"
| "THUMBNAIL"
| "THUMBNAIL_AND_FULLFRAME"
| "ADVANCED"

§Type

§
"NONE" | "THUMBNAIL" | "THUMBNAIL_AND_FULLFRAME" | "ADVANCED" | cmnP.UnexpectedEnumValue
[src]