apply Video Processor
Applies a video frame processor to the outgoing video stream.
The processor receives each captured video frame and can modify it before encoding. Use this for effects like background blur, virtual backgrounds, or image filters.
Code Example:
VideoSDK.applyVideoProcessor { frame ->
// Process the video frame
frame // Return the modified frame
}
Content copied to clipboard
Parameters
video Frame Processor
The VideoFrameProcessor to apply to outgoing video frames.