BitmovinApiSdk\Models\ConditionAttribute
Synopsis
class ConditionAttribute
extends Enum
{
- // methods
- public static ConditionAttribute create()
- public static ConditionAttribute HEIGHT()
- public static ConditionAttribute WIDTH()
- public static ConditionAttribute BITRATE()
- public static ConditionAttribute FPS()
- public static ConditionAttribute ASPECTRATIO()
- public static ConditionAttribute INPUTSTREAM()
- public static ConditionAttribute LANGUAGE()
- public static ConditionAttribute CHANNELFORMAT()
- public static ConditionAttribute CHANNELLAYOUT()
- public static ConditionAttribute STREAMCOUNT()
- public static ConditionAttribute AUDIOSTREAMCOUNT()
- public static ConditionAttribute VIDEOSTREAMCOUNT()
- public static ConditionAttribute DURATION()
- public static ConditionAttribute ROTATION()
- public static ConditionAttribute CONNECTION_STATUS()
- public static ConditionAttribute CONNECTION_STATUS_JUST_CHANGED()
- // 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 ConditionAttribute __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- ASPECTRATIO() — Aspect ratio of the input (greater 1 = landscape; smaller 1 = portrait)
- AUDIOSTREAMCOUNT() — The total numbers of audio streams in the input file (integer)
- BITRATE() — Bitrate of the input
- CHANNELFORMAT() — The channel format of the audio stream (string)
- CHANNELLAYOUT() — The channel layout of the audio stream (integer)
- CONNECTION_STATUS() — String value representing the changed connection status
- CONNECTION_STATUS_JUST_CHANGED() — Boolean value if the connection status changed
- DURATION() — The duration of the input file (double)
- FPS() — Frames per second of the input
- HEIGHT() — Height of the input
- INPUTSTREAM() — Input stream is present (boolean)
- LANGUAGE() — The language of the audio stream (string)
- ROTATION() — The rotation of the input file (double)
- STREAMCOUNT() — The total numbers of streams in the input file (integer)
- VIDEOSTREAMCOUNT() — The total numbers of video streams in the input file (integer)
- WIDTH() — Width of the input
- 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