StreamingVideoSettings

@Serializable
data class StreamingVideoSettings(width: Int?, height: Int?, fps: Int?, backgroundColor: String?, bitrate: Int?)

Types

Link copied to clipboard
class Builder

Properties

Link copied to clipboard
val backgroundColor: String? = null

The background color of the video, defined as an RGB or ARGB string: #aarrggbb or #rrggbb. Default: #ff000000.

Link copied to clipboard
val bitrate: Int? = null

The bitrate of the video, in kilobits per second.

Link copied to clipboard
val fps: Int? = null

The framerate of the video, in frames per second. Default: 30.

Link copied to clipboard
val height: Int? = null

The height of the video in pixels. Default: 1080.

Link copied to clipboard
val width: Int? = null

The width of the video in pixels. Default: 1920.