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

ElementaryStream

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

Encoding of an input file such as an audio, video, or text track. Elementary streams must be packaged before mapping and sharing between different output formats.

interface ElementaryStream {
audioStream?: AudioStream;
key?: string;
textStream?: TextStream;
videoStream?: VideoStream;
}

§Properties

§
audioStream?: AudioStream
[src]

Encoding of an audio stream.

§
key?: string
[src]

A unique key for this elementary stream.

§
textStream?: TextStream
[src]

Encoding of a text stream. For example, closed captions or subtitles.

§
videoStream?: VideoStream
[src]

Encoding of a video stream.