VideoSetting

data class VideoSetting(val codecType: String, var bitRate: Int? = null, var vp9Params: Any? = null, var av1Params: Any? = null, var h264Params: Any? = null)

Constructors

Link copied to clipboard
constructor(codecType: String, bitRate: Int? = null, vp9Params: Any? = null, av1Params: Any? = null, h264Params: Any? = null)

Properties

Link copied to clipboard
@SerializedName(value = "av1_params")
var av1Params: Any?
Link copied to clipboard
@SerializedName(value = "bit_rate")
var bitRate: Int?
Link copied to clipboard
@SerializedName(value = "codec_type")
val codecType: String
Link copied to clipboard
@SerializedName(value = "h264_params")
var h264Params: Any?
Link copied to clipboard
@SerializedName(value = "vp9_params")
var vp9Params: Any?