VideoScaleResponse

data class VideoScaleResponse(val height: String? = null, val mode: String? = null, val width: String? = null)

The video scaling information.

Constructors

Link copied to clipboard
constructor(height: String? = null, mode: String? = null, width: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val height: String? = null

The desired output video height.

Link copied to clipboard
val mode: String? = null

Describes the video scaling mode to be applied. Default mode is 'Pad'. If the mode is 'Pad' or 'Stretch' then both width and height must be specified. Else if the mode is 'PreserveAspectRatio' then only one of width or height need be provided.

Link copied to clipboard
val width: String? = null

The desired output video width.