@hysc/meeting 5.0.81 → 5.0.83
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.
|
@@ -221,10 +221,9 @@ export default class BMStreamModel {
|
|
|
221
221
|
/**
|
|
222
222
|
* 播放当前流
|
|
223
223
|
*/
|
|
224
|
-
play: import("lodash-es").DebouncedFunc<(
|
|
224
|
+
play: import("lodash-es").DebouncedFunc<() => Promise<void>>;
|
|
225
225
|
/**
|
|
226
226
|
* 在大窗口播放该流的时候调用这个方法
|
|
227
|
-
* @param mute 是否静音 默认true
|
|
228
227
|
*/
|
|
229
228
|
playInBig: import("lodash-es").DebouncedFunc<() => Promise<void>>;
|
|
230
229
|
private initBigPlayer;
|
|
@@ -273,7 +272,8 @@ export default class BMStreamModel {
|
|
|
273
272
|
*/
|
|
274
273
|
collectAudioLevel: () => void;
|
|
275
274
|
private handleAudioLevel;
|
|
276
|
-
|
|
275
|
+
checkSmallVideo(): void;
|
|
276
|
+
checkBigVideo(): void;
|
|
277
277
|
/**
|
|
278
278
|
* 播放黑窗处理,主要是做一个容错处理,又可能这股流拉下来或者存在订阅就出现问题的情况
|
|
279
279
|
* 播放时黑窗的,这个时候需要,检测,然后重新拉流
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.83",
|
|
4
4
|
"description": "boom meeting",
|
|
5
5
|
"main": "umd/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"author": "yangliye",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@hysc/core": "5.0.
|
|
17
|
+
"@hysc/core": "5.0.81",
|
|
18
18
|
"@hysc/logger": "1.0.0",
|
|
19
19
|
"lodash-es": "^4.17.21",
|
|
20
20
|
"mitt": "^3.0.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@hysc/utils": "1.2.4"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@hysc/core": "5.0.
|
|
27
|
+
"@hysc/core": "5.0.81"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/lodash-es": "^4.17.6"
|
|
@@ -224,7 +224,6 @@ export default class BMStreamModel {
|
|
|
224
224
|
play: any;
|
|
225
225
|
/**
|
|
226
226
|
* 在大窗口播放该流的时候调用这个方法
|
|
227
|
-
* @param mute 是否静音 默认true
|
|
228
227
|
*/
|
|
229
228
|
playInBig: any;
|
|
230
229
|
private initBigPlayer;
|
|
@@ -273,7 +272,8 @@ export default class BMStreamModel {
|
|
|
273
272
|
*/
|
|
274
273
|
collectAudioLevel: () => void;
|
|
275
274
|
private handleAudioLevel;
|
|
276
|
-
|
|
275
|
+
checkSmallVideo(): void;
|
|
276
|
+
checkBigVideo(): void;
|
|
277
277
|
/**
|
|
278
278
|
* 播放黑窗处理,主要是做一个容错处理,又可能这股流拉下来或者存在订阅就出现问题的情况
|
|
279
279
|
* 播放时黑窗的,这个时候需要,检测,然后重新拉流
|