AliVCSDK 6.17.0
阿里云音视频SDK,为视频开发者提供一站式接入服务
 
载入中...
搜索中...
未找到
AlivcLiveMixStream.java
1package com.alivc.live.pusher;
2
11@Visible
12public class AlivcLiveMixStream {
13
17 public String userId;
18
22 public int x;
23
27 public int y;
28
32 public int width;
33
37 public int height;
38
44 public int zOrder;
45
53
60
66 public String backgroundImageUrl;
67
74 @Deprecated
75 public String getUserId() {
76 return userId;
77 }
78
85 @Deprecated
86 public void setUserId(String userId) {
87 this.userId = userId;
88 }
89
96 @Deprecated
97 public int getX() {
98 return x;
99 }
100
107 @Deprecated
108 public void setX(int x) {
109 this.x = x;
110 }
111
118 @Deprecated
119 public int getY() {
120 return y;
121 }
122
129 @Deprecated
130 public void setY(int y) {
131 this.y = y;
132 }
133
140 @Deprecated
141 public int getWidth() {
142 return width;
143 }
144
151 @Deprecated
152 public void setWidth(int width) {
153 this.width = width;
154 }
155
162 @Deprecated
163 public int getHeight() {
164 return height;
165 }
166
173 @Deprecated
174 public void setHeight(int height) {
175 this.height = height;
176 }
177
184 @Deprecated
185 public int getZOrder() {
186 return zOrder;
187 }
188
195 @Deprecated
196 public void setZOrder(int zOrder) {
197 this.zOrder = zOrder;
198 }
199
206 @Deprecated
208 return mixStreamType;
209 }
210
217 @Deprecated
219 this.mixStreamType = mixStreamType;
220 }
221
227 @Deprecated
229 return mixSourceType;
230 }
231
237 @Deprecated
239 this.mixSourceType = mixSourceType;
240 }
241
247 @Deprecated
248 public String getBackgroundImageUrl() {
249 return backgroundImageUrl;
250 }
251
258 @Deprecated
260 this.backgroundImageUrl = backgroundImageUrl;
261 }
262
263 @Override
264 public String toString() {
265 return "AlivcLiveMixStream{" +
266 "userId='" + userId + '\'' +
267 ", x=" + x +
268 ", y=" + y +
269 ", width=" + width +
270 ", height=" + height +
271 ", zOrder=" + zOrder +
272 ", mixStreamType=" + mixStreamType +
273 ", mixSourceType=" + mixSourceType +
274 ", backgroundImageUrl='" + backgroundImageUrl + '\'' +
275 '}';
276 }
277}
推流云端混流转码的每一路子画面的位置信息
void setBackgroundImageUrl(String backgroundImageUrl)
void setMixSourceType(AlivcLiveMixSourceType mixSourceType)
void setMixStreamType(AlivcLiveMixStreamType mixStreamType)