onLocalVideoTranscoderError property

void Function(TranscodingVideoStream stream, VideoTranscoderError error)? onLocalVideoTranscoderError
final

Occurs when there's an error during the local video mixing.

When you fail to call startLocalVideoTranscoder or updateLocalTranscoderConfiguration, the SDK triggers this callback to report the reason.

  • stream The video streams that cannot be mixed during video mixing. See TranscodingVideoStream.
  • error The reason for local video mixing error. See VideoTranscoderError.

Implementation

final void Function(
        TranscodingVideoStream stream, VideoTranscoderError error)?
    onLocalVideoTranscoderError;