REST Resource: videoFormats

  • The VideoFormat resource provides details about supported video formats, including file type, target bit rate, and resolution.

  • Video formats can be accessed and managed using methods such as get to retrieve a specific format by ID and list to retrieve all available formats.

  • Supported file types for video formats include FLV, 3GPP, MP4, WEBM, and M3U8.

  • Each video format is identified by a unique ID and has a specific target bit rate and resolution, defined by the Size object.

Resource: VideoFormat

Contains information about supported video formats.

JSON representation
{
  "id": integer,
  "fileType": enum (FileType),
  "targetBitRate": integer,
  "resolution": {
    object (Size)
  },
  "kind": string
}
Fields
id

integer

ID of the video format.

fileType

enum (FileType)

File type of the video format.

targetBitRate

integer

The target bit rate of this video format.

resolution

object (Size)

The resolution of this video format.

kind

string

Identifies what kind of resource this is. Value: the fixed string

"dfareporting#videoFormat"

.

FileType

Enums
FLV
THREEGPP
MP4
WEBM
M3U8

Methods

get

Gets one video format by ID.

list

Lists available video formats.