@volcengine/vepusher 2.0.4-rc.0 → 2.0.4-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.d.ts +31 -0
- package/dist/index.es.js +895 -860
- package/dist/index.umd.js +6 -6
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
|
@@ -301,6 +301,10 @@ declare interface IVideoStreamLayoutParams {
|
|
|
301
301
|
* @brief When the video stream contains audio content, the corresponding audio volume ranges from `[0,100]`.
|
|
302
302
|
*/
|
|
303
303
|
volume?: number;
|
|
304
|
+
/** {zh}
|
|
305
|
+
* @brief 镜像类型,默认为不镜像。
|
|
306
|
+
*/
|
|
307
|
+
mirrorType?: MirrorType;
|
|
304
308
|
}
|
|
305
309
|
|
|
306
310
|
/** {zh}
|
|
@@ -1044,6 +1048,33 @@ declare class LivePusher extends default_2<RTMEvents> {
|
|
|
1044
1048
|
}
|
|
1045
1049
|
export default LivePusher;
|
|
1046
1050
|
|
|
1051
|
+
/** {zh}
|
|
1052
|
+
* @detail config
|
|
1053
|
+
* @list config
|
|
1054
|
+
* @brief 视频流镜像方向
|
|
1055
|
+
* @id MirrorType
|
|
1056
|
+
* @name MirrorType
|
|
1057
|
+
*/
|
|
1058
|
+
declare enum MirrorType {
|
|
1059
|
+
/** {zh}
|
|
1060
|
+
* @brief 左右镜像
|
|
1061
|
+
*/
|
|
1062
|
+
LeftToRight = "LeftToRight",
|
|
1063
|
+
/** {zh}
|
|
1064
|
+
* @brief 上下镜像
|
|
1065
|
+
*/
|
|
1066
|
+
UpToDown = "UpToDown",
|
|
1067
|
+
/** {zh}
|
|
1068
|
+
* @brief 左右+上下镜像
|
|
1069
|
+
*/
|
|
1070
|
+
All = "All",
|
|
1071
|
+
/**
|
|
1072
|
+
* {zh}
|
|
1073
|
+
* @brief 不镜像
|
|
1074
|
+
*/
|
|
1075
|
+
None = "None"
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1047
1078
|
/** {zh}
|
|
1048
1079
|
* @detail events
|
|
1049
1080
|
* @list events
|