RectangleResponse

data class RectangleResponse(val height: String? = null, val left: String? = null, val top: String? = null, val width: String? = null)

Describes the properties of a rectangular window applied to the input media before processing it.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val height: String? = null

The height of the rectangular region in pixels. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).

Link copied to clipboard
val left: String? = null

The number of pixels from the left-margin. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).

Link copied to clipboard
val top: String? = null

The number of pixels from the top-margin. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).

Link copied to clipboard
val width: String? = null

The width of the rectangular region in pixels. This can be absolute pixel value (e.g 100), or relative to the size of the video (For example, 50%).