PadArgs

data class PadArgs(val bottomPixels: Output<Int>? = null, val leftPixels: Output<Int>? = null, val rightPixels: Output<Int>? = null, val topPixels: Output<Int>? = null) : ConvertibleToJava<PadArgs>

Pad filter configuration for the input video. The padded input video is scaled after padding with black to match the output resolution.

Constructors

Link copied to clipboard
constructor(bottomPixels: Output<Int>? = null, leftPixels: Output<Int>? = null, rightPixels: Output<Int>? = null, topPixels: Output<Int>? = null)

Properties

Link copied to clipboard
val bottomPixels: Output<Int>? = null

The number of pixels to add to the bottom. The default is 0.

Link copied to clipboard
val leftPixels: Output<Int>? = null

The number of pixels to add to the left. The default is 0.

Link copied to clipboard
val rightPixels: Output<Int>? = null

The number of pixels to add to the right. The default is 0.

Link copied to clipboard
val topPixels: Output<Int>? = null

The number of pixels to add to the top. The default is 0.

Functions

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