BitmovinApiSdk\Models\MuxingType
Synopsis
class MuxingType
extends Enum
{
- // methods
- public static MuxingType create()
- public static MuxingType FMP4()
- public static MuxingType CMAF()
- public static MuxingType MP4()
- public static MuxingType TS()
- public static MuxingType WEBM()
- public static MuxingType MP3()
- public static MuxingType MXF()
- public static MuxingType PROGRESSIVE_WAV()
- public static MuxingType PROGRESSIVE_WEBM()
- public static MuxingType PROGRESSIVE_MOV()
- public static MuxingType PROGRESSIVE_TS()
- public static MuxingType BROADCAST_TS()
- public static MuxingType CHUNKED_TEXT()
- public static MuxingType TEXT()
- public static MuxingType SEGMENTED_RAW()
- public static MuxingType PACKED_AUDIO()
- // 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 MuxingType __callStatic()
- public mixed jsonSerialize()
Hierarchy
Extends
Methods
public
- BROADCAST_TS() — BROADCAST_TS
- CHUNKED_TEXT() — CHUNKED_TEXT
- CMAF() — CMAF
- FMP4() — FMP4
- MP3() — MP3
- MP4() — MP4
- MXF() — MXF
- PACKED_AUDIO() — PACKED_AUDIO
- PROGRESSIVE_MOV() — PROGRESSIVE_MOV
- PROGRESSIVE_TS() — PROGRESSIVE_TS
- PROGRESSIVE_WAV() — Single file output as Waveform Audio File Format containing a single PCM audio stream
- PROGRESSIVE_WEBM() — PROGRESSIVE_WEBM
- SEGMENTED_RAW() — SEGMENTED_RAW
- TEXT() — TEXT
- TS() — TS
- WEBM() — WEBM
- 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