VideoPropertiesArgs

data class VideoPropertiesArgs(val bitrate: Output<Int>? = null, val framerate: Output<Double>? = null, val height: Output<Int>? = null, val width: Output<Int>? = null) : ConvertibleToJava<VideoPropertiesArgs>

Video configuration. Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps

Constructors

Link copied to clipboard
constructor(bitrate: Output<Int>? = null, framerate: Output<Double>? = null, height: Output<Int>? = null, width: Output<Int>? = null)

Properties

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

Bitrate for generated output, in bps. Default: 2500000.

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

Video frame rate, in fps. Default: 30.

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

Video-resolution height. This must be an even number. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 720.

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

Video-resolution width. This must be an even number. Note that the maximum value is determined by width times height, such that the maximum total pixels is 2073600 (1920x1080 or 1080x1920). Default: 1280.

Functions

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