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

Manifest

import type { Manifest } from "https://googleapis.deno.dev/v1/transcoder:v1.ts";

Manifest configuration.

interface Manifest {
dash?: DashConfig;
fileName?: string;
muxStreams?: string[];
type?: "MANIFEST_TYPE_UNSPECIFIED" | "HLS" | "DASH";
}

§Properties

§

DASH manifest configuration.

§
fileName?: string
[src]

The name of the generated file. The default is manifest with the extension suffix corresponding to the Manifest.type.

§
muxStreams?: string[]
[src]

Required. List of user supplied MuxStream.key values that should appear in this manifest. When Manifest.type is HLS, a media manifest with name MuxStream.key and .m3u8 extension is generated for each element in this list.

§
type?: "MANIFEST_TYPE_UNSPECIFIED" | "HLS" | "DASH"
[src]

Required. Type of the manifest.