ColorArgs

data class ColorArgs(val brightness: Output<Double>? = null, val contrast: Output<Double>? = null, val saturation: Output<Double>? = null) : ConvertibleToJava<ColorArgs>

Color preprocessing configuration. Note: This configuration is not supported.

Constructors

Link copied to clipboard
constructor(brightness: Output<Double>? = null, contrast: Output<Double>? = null, saturation: Output<Double>? = null)

Properties

Link copied to clipboard
val brightness: Output<Double>? = null

Control brightness of the video. Enter a value between -1 and 1, where -1 is minimum brightness and 1 is maximum brightness. 0 is no change. The default is 0.

Link copied to clipboard
val contrast: Output<Double>? = null

Control black and white contrast of the video. Enter a value between -1 and 1, where -1 is minimum contrast and 1 is maximum contrast. 0 is no change. The default is 0.

Link copied to clipboard
val saturation: Output<Double>? = null

Control color saturation of the video. Enter a value between -1 and 1, where -1 is fully desaturated and 1 is maximum saturation. 0 is no change. The default is 0.

Functions

Link copied to clipboard
open override fun toJava(): ColorArgs