ManifestOptions

Options for manifest generation.

JSON representation
{
  "includeRenditions": [
    {
      object (RenditionFilter)
    }
  ],
  "bitrateOrder": enum (OrderPolicy)
}
Fields
includeRenditions[]

object (RenditionFilter)

If specified, the output manifest will only return renditions matching the specified filters.

bitrateOrder

enum (OrderPolicy)

If specified, the output manifest will orders the video and muxed renditions by bitrate according to the ordering policy.

RenditionFilter

Filters for a video or muxed redition.

JSON representation
{
  "bitrateBps": integer,
  "codecs": string
}
Fields
bitrateBps

integer

Bitrate in bits per second for the rendition. If set, only renditions with the exact bitrate will match.

codecs

string

Codecs for the rendition. If set, only renditions with the exact value will match.

OrderPolicy

Defines the ordering policy during manifest generation.

Enums
ORDER_POLICY_UNSPECIFIED Ordering policy is not specified.
ASCENDING Order by ascending.
DESCENDING Order by descending.