VideoProcessor

@Serializable
sealed class VideoProcessor : Update<VideoProcessor> , CustomJsonSerialize

Types

Link copied to clipboard
@Serializable
data class BackgroundBlur(strength: Double) : VideoProcessor

Blur the background by the specified amount, between 0.0 and 1.0.

Link copied to clipboard
@Serializable
data class BackgroundImage(path: String) : VideoProcessor

Replace the background with the specified image. The path must be relative to the assets directory.

Link copied to clipboard
object Companion
Link copied to clipboard
@Serializable
object None : VideoProcessor

Video processor disabled.

Functions

Link copied to clipboard
open override fun toJson(): JsonObject

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard