VideoCanvas
Attributes of the video canvas object.
public class VideoCanvas { public static final int RENDER_MODE_HIDDEN = 1; public static final int RENDER_MODE_FIT = 2; public static final int RENDER_MODE_ADAPTIVE = 3; public static final int VIEW_SETUP_MODE_REPLACE = 0; public static final int VIEW_SETUP_MODE_ADD = 1; public static final int VIEW_SETUP_MODE_REMOVE = 2; public View view; public int uid; public int renderMode; public int mirrorMode; public int setupMode = VIEW_SETUP_MODE_REPLACE; public int sourceType; public int mediaPlayerId; public Rect rect; public int backgroundColor; public Constants.VideoModulePosition position = Constants.VideoModulePosition.VIDEO_MODULE_POSITION_POST_CAPTURER; public VideoCanvas(View view) { this.view = view; this.renderMode = RENDER_MODE_HIDDEN; this.backgroundColor = 0; } public VideoCanvas(View view, int renderMode, int uid) { this.view = view; this.renderMode = renderMode; this.uid = uid; this.backgroundColor = 0; } }
Attributes
- view
- The video display window.
- renderMode
- RENDER_MODE_HIDDEN(1): Hidden mode. Uniformly scale the video until it fills the visible boundaries (cropped). One dimension of the video may have clipped contents.
- RENDER_MODE_FIT(2): Fit mode. Uniformly scale the video until one of its dimension fits the boundary (zoomed to fit). Areas that are not filled due to the disparity in the aspect ratio are filled with black.
- RENDER_MODE_ADAPTIVE(3): This mode is deprecated.
- mirrorMode
-
- VIDEO_MIRROR_MODE_AUTO(0): The SDK determines whether to enable the mirror mode. If you use a front camera, the SDK enables the mirror mode by default; if you use a rear camera, the SDK disables the mirror mode by default.
- VIDEO_MIRROR_MODE_ENABLED(1): Enable the mirroring mode of the local view.
- VIDEO_MIRROR_MODE_DISABLED(2): Disable the mirroring mode of the local view.
Attention:- For the mirror mode of the local video view: If you use a front camera, the SDK enables the mirror mode by default; if you use a rear camera, the SDK disables the mirror mode by default.
- For the remote user: The mirror mode is disabled by default.
- uid
- The user ID.
- sourceType
- The type of the video source. See VideoSourceType.
- sourceId
- The ID of the video source.
- setupMode
- Setting mode of the view.
- VIEW_SETUP_MODE_REPLACE(0): (Default) Replaces a view.
- VIEW_SETUP_MODE_ADD(1): Adds a view.
- VIEW_SETUP_MODE_REMOVE(2): Deletes a view.
- mediaPlayerId
- The ID of the media player. You can get the Device ID by calling getMediaPlayerId.
- rect
- (Optional) Display area for the video frame. See Rect. width and height represent the video pixel width and height of the area. The default value is null (width or height is 0), which means that the actual resolution of the video frame is displayed.
- backgroundColor
- The background color of the video canvas in RGBA format. The default value is 0x00000000, which represents completely transparent black.