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

VideoFormat

import type { VideoFormat } from "https://googleapis.deno.dev/v1/dfareporting:v4.ts";

Contains information about supported video formats.

interface VideoFormat {
fileType?:
| "FLV"
| "THREEGPP"
| "MP4"
| "WEBM"
| "M3U8";
id?: number;
kind?: string;
resolution?: Size;
targetBitRate?: number;
}

§Properties

§
fileType?: "FLV" | "THREEGPP" | "MP4" | "WEBM" | "M3U8"
[src]

File type of the video format.

§
id?: number
[src]

ID of the video format.

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "dfareporting#videoFormat".

§
resolution?: Size
[src]

The resolution of this video format.

§
targetBitRate?: number
[src]

The target bit rate of this video format.