BitmovinApiSdk\Models\PresetConfiguration
Synopsis
class PresetConfiguration
extends Enum
{
- // methods
- public static PresetConfiguration create()
- public static PresetConfiguration LIVE_ULTRAHIGH_QUALITY()
- public static PresetConfiguration LIVE_VERYHIGH_QUALITY()
- public static PresetConfiguration LIVE_HIGH_QUALITY()
- public static PresetConfiguration LIVE_STANDARD()
- public static PresetConfiguration LIVE_LOW_LATENCY()
- public static PresetConfiguration LIVE_LOWER_LATENCY()
- public static PresetConfiguration LIVE_VERYLOW_LATENCY()
- public static PresetConfiguration VOD_HIGH_QUALITY()
- public static PresetConfiguration VOD_QUALITY()
- public static PresetConfiguration VOD_STANDARD()
- public static PresetConfiguration VOD_SPEED()
- public static PresetConfiguration VOD_HIGH_SPEED()
- public static PresetConfiguration VOD_VERYHIGH_SPEED()
- public static PresetConfiguration VOD_EXTRAHIGH_SPEED()
- public static PresetConfiguration VOD_SUPERHIGH_SPEED()
- public static PresetConfiguration VOD_ULTRAHIGH_SPEED()
- public static PresetConfiguration VOD_HARDWARE_SHORTFORM()
- // Inherited methods from Enum
- public void __construct()
- public mixed getValue()
- public mixed getKey()
- public string __toString()
- public final bool equals()
- public static array keys()
- public static array values()
- public static array toArray()
- public static bool isValidKey()
- public static mixed search()
- public static PresetConfiguration __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- LIVE_HIGH_QUALITY() — supported for H264, H265
- LIVE_LOWER_LATENCY() — supported for H264
- LIVE_LOW_LATENCY() — supported for H264, H265
- LIVE_STANDARD() — supported for H264, H265
- LIVE_ULTRAHIGH_QUALITY() — supported for H264
- LIVE_VERYHIGH_QUALITY() — supported for H264
- LIVE_VERYLOW_LATENCY() — supported for H264
- VOD_EXTRAHIGH_SPEED() — supported for H264, H265
- VOD_HARDWARE_SHORTFORM() — supported for H264, H265
- VOD_HIGH_QUALITY() — supported for H264, H265, VP9
- VOD_HIGH_SPEED() — supported for H264, H265
- VOD_QUALITY() — supported for H264
- VOD_SPEED() — supported for H264, H265, VP9
- VOD_STANDARD() — supported for H264, H265, VP9
- VOD_SUPERHIGH_SPEED() — supported for H264, H265
- VOD_ULTRAHIGH_SPEED() — supported for H264, H265
- VOD_VERYHIGH_SPEED() — supported for H264, H265
- 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
- search() — Return key for value
- toArray() — Returns all possible values as an array
- values() — Returns instances of the Enum class of all Enum constants