TranscodingVideoStream
参与本地合图的视频流。
Java
public static class TranscodingVideoStream {
public Constants.VideoSourceType sourceType;
public int remoteUserUid;
public String imageUrl;
public int mediaPlayerId;
public int x;
public int y;
public int width;
public int height;
public int zOrder;
public double alpha;
public boolean mirror;
public TranscodingVideoStream() {
this.sourceType = Constants.VideoSourceType.VIDEO_SOURCE_CAMERA_PRIMARY;
this.remoteUserUid = 0;
this.imageUrl = null;
this.x = 0;
this.y = 0;
this.width = 0;
this.height = 0;
this.zOrder = 0;
this.alpha = 1.0;
this.mirror = false;
}
};
sourceType
参与本地合图的视频源类型。详见 VideoSourceType。
remoteUserUid
远端用户 ID。
注意
请仅在参与本地合图的视频源类型为 VIDEO_SOURCE_REMOTE 时,使用该参数。
imageUrl
图像的 URL。
注意
请仅在参与本地合图的视频源类型为图片时,使用该参数。
mediaPlayerId
(可选)媒体播放器 ID。当你将 sourceType 设置为 VIDEO_SOURCE_MEDIA_PLAYER 时,需要设置该参数。
x
参与本地合图的视频的左上角相对于合图画布左上角(原点)的横向位移。
y
参与本地合图的视频的左上角相对于合图画布左上角(原点)的纵向位移。
width
参与本地合图的视频的宽度 (px)。
height
参与本地合图的视频的高度 (px)。
zOrder
参与本地合图的视频所属的图层的编号。取值范围为 [0,100]。
- 0:(默认值)图层在最下层。
- 100: 图层在最上层。
alpha
参与本地合图的视频的透明度。取值范围为 [0.0,1.0]。 0.0 表示透明度为完全透明,1.0 表示透明度为完全不透明。
mirror
是否对参与本地合图的的视频进行镜像:
true
: 将参与本地合图的视频进行镜像。false
: (默认值)不将参与本地合图的视频进行镜像。
注意
该参数仅对视频源类型为摄像头的视频生效。