LocalTranscoderConfiguration

Used to configure video composition on the local client.

public class LocalTranscoderConfiguration {
  public ArrayList<TranscodingVideoStream> transcodingVideoStreams;
  public boolean syncWithPrimaryCamera;
  public VideoEncoderConfiguration videoOutputConfiguration;
}

Properties

transcodingVideoStreams
Video streams used for local composition. See TranscodingVideoStream.
syncWithPrimaryCamera
Whether to use the timestamp of the video frame captured by the primary camera as the timestamp of the composed video frame.
  • true: (default) use the captured frame timestamp.
  • false: use the timestamp of the composed frame.
videoOutputConfiguration
Encoding configuration of the output video stream after local composition. See VideoEncoderConfiguration.