BitmovinApiSdk\Models\StreamMode

Synopsis

class StreamMode extends Enum {
}

Hierarchy

Methods

public

  • PER_TITLE_RESULT() — Once the Per-Title encoding is done, the generated streams will have this mode set.
  • PER_TITLE_TEMPLATE() — Template for Per-Title encoding. This is used to define encoding settings for a given resolution when Per-Title encoding is enabled. Additionally, it allows to define which resolutions should be considered by Per-Title encoding.
  • PER_TITLE_TEMPLATE_FIXED_RESOLUTION() — Same as PER_TITLE_TEMPLATE, but it will be ensured that the configured resolution will be present in the Per-Title result.
  • PER_TITLE_TEMPLATE_FIXED_RESOLUTION_AND_BITRATE() — Same as PER_TITLE_TEMPLATE, but it will be ensured that the configured resolution and bitrate range will be present in the Per-Title result.
  • STANDARD() — Standard encoding. This is used to configure renditions that must show up in the output, i.e. will get encoded exactly as configured.
  • create()

Inherited from BitmovinApiSdk\Common\Enum

public

  • __callStatic() — Returns a value when called statically like so: MyEnum::SOME_VALUE() given SOME_VALUE is a class constant
  • __toString()
  • equals() — Determines if Enum should be considered equal with the variable passed as a parameter.
  • getKey() — Returns the enum key (i.e. the constant name).
  • getValue()
  • isValidKey() — Check if is valid enum key
  • jsonSerialize() — Specify data which should be serialized to JSON. This method returns data that can be serialized by json_encode() natively.
  • keys() — Returns the names (keys) of all constants in the Enum class
  • toArray() — Returns all possible values as an array
  • values() — Returns instances of the Enum class of all Enum constants