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

Transcode

import type { Transcode } from "https://googleapis.deno.dev/v1/displayvideo:v3.ts";

Represents information about the transcoded audio or video file.

interface Transcode {
audioBitRateKbps?: bigint;
audioSampleRateHz?: bigint;
bitRateKbps?: bigint;
dimensions?: Dimensions;
fileSizeBytes?: bigint;
frameRate?: number;
mimeType?: string;
name?: string;
transcoded?: boolean;
}

§Properties

§
audioBitRateKbps?: bigint
[src]

The bit rate for the audio stream of the transcoded video, or the bit rate for the transcoded audio, in kilobits per second.

§
audioSampleRateHz?: bigint
[src]

The sample rate for the audio stream of the transcoded video, or the sample rate for the transcoded audio, in hertz.

§
bitRateKbps?: bigint
[src]

The transcoding bit rate of the transcoded video, in kilobits per second.

§
dimensions?: Dimensions
[src]

The dimensions of the transcoded video.

§
fileSizeBytes?: bigint
[src]

The size of the transcoded file, in bytes.

§
frameRate?: number
[src]

The frame rate of the transcoded video, in frames per second.

§
mimeType?: string
[src]

The MIME type of the transcoded file.

§
name?: string
[src]

The name of the transcoded file.

§
transcoded?: boolean
[src]

Indicates if the transcoding was successful.