BitmovinApiSdk\Models\InputColorSpace

Synopsis

class InputColorSpace extends Enum {
  • // methods
  • public static InputColorSpace create()
  • public static InputColorSpace UNSPECIFIED()
  • public static InputColorSpace RGB()
  • public static InputColorSpace BT709()
  • public static InputColorSpace FCC()
  • public static InputColorSpace BT470BG()
  • public static InputColorSpace SMPTE170M()
  • public static InputColorSpace SMPTE240M()
  • public static InputColorSpace YCGCO()
  • public static InputColorSpace YCOCG()
  • public static InputColorSpace BT2020_NCL()
  • public static InputColorSpace BT2020_CL()
  • public static InputColorSpace SMPTE2085()
}

Hierarchy

Methods

public

  • BT2020_CL() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • BT2020_NCL() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • BT470BG() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • BT709() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • FCC() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • RGB() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • SMPTE170M() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • SMPTE2085() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • SMPTE240M() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • UNSPECIFIED() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • YCGCO() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • YCOCG() — Override the color space detected in the input file. If not set the input color space will be automatically detected if possible.
  • 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