ezuikit-js 8.1.10 → 8.1.12
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/CHANGELOG.md +12 -2
- package/README.md +9 -3
- package/ezuikit.js +28 -13
- package/ezuikit_static/PlayCtrlWasm/playCtrl1/HasSIMD/Decoder.js +26 -24
- package/ezuikit_static/PlayCtrlWasm/playCtrl1/NoSIMD/Decoder.js +26 -24
- package/ezuikit_static/PlayCtrlWasm/playCtrl3/hasWorker/HasSIMD/Decoder.js +1 -1
- package/ezuikit_static/PlayCtrlWasm/playCtrl3/hasWorker/HasSIMD/Decoder.wasm +0 -0
- package/ezuikit_static/PlayCtrlWasm/playCtrl3/hasWorker/NoSIMD/Decoder.js +1 -1
- package/ezuikit_static/PlayCtrlWasm/playCtrl3/hasWorker/NoSIMD/Decoder.wasm +0 -0
- package/ezuikit_static/PlayCtrlWasm/playCtrl3/noWorker/Decoder.js +1 -1
- package/ezuikit_static/PlayCtrlWasm/playCtrl3/noWorker/Decoder.wasm +0 -0
- package/index.js +8 -8
- package/index.mjs +8 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
|
+
### v8.1.12 (2025-07-02)
|
|
2
|
+
|
|
3
|
+
#### Feat
|
|
4
|
+
|
|
5
|
+
- 优化对讲模块逻辑
|
|
6
|
+
|
|
7
|
+
- 修复了一些取流问题
|
|
8
|
+
|
|
1
9
|
### v8.1.10 (2025-04-27)
|
|
2
10
|
|
|
3
11
|
#### Feat
|
|
4
12
|
|
|
5
13
|
- 优化取流逻辑,
|
|
6
|
-
|
|
7
|
-
-
|
|
14
|
+
|
|
15
|
+
- 弃用 `host`, `host` 默认从播放地址中获取
|
|
16
|
+
|
|
17
|
+
- 新增初始化 `videoLevelList` 参数进行自定义清晰度列表
|
|
8
18
|
|
|
9
19
|
#### Fixed
|
|
10
20
|
|
package/README.md
CHANGED
|
@@ -41,10 +41,10 @@ import EZUIKit from "ezuikit-js";
|
|
|
41
41
|
|
|
42
42
|
```js
|
|
43
43
|
// >= v8.1.2 CommonJS
|
|
44
|
-
import { EZUIKitPlayer } from
|
|
44
|
+
import { EZUIKitPlayer } from "ezuikit-js/index.js";
|
|
45
45
|
|
|
46
46
|
// < v8.1.2 CommonJS
|
|
47
|
-
import EZUIKit from
|
|
47
|
+
import EZUIKit from "ezuikit-js/index.js";
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
#### 如果你使用原生方法,可以通过标签引用
|
|
@@ -113,10 +113,16 @@ alpha(功能测试)、beta(集成测试)为我们的非正式版本,
|
|
|
113
113
|
|
|
114
114
|
> 如果使用 react + vite,可参考 demos => [with-react-vite](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/tree/master/demos/with-react-vite)
|
|
115
115
|
|
|
116
|
-
> 如果使用
|
|
116
|
+
> 如果使用 next.js,可参考 demos => [with-next](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/tree/master/demos/with-next)
|
|
117
|
+
|
|
118
|
+
> 如果使用 electron,可参考 demos => [with-electron](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/tree/master/demos/with-electron)
|
|
117
119
|
|
|
118
120
|
> 如果使用 vue3,可参考 demos => [vue3-demo](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/tree/master/demos/vue3-demo)
|
|
119
121
|
|
|
122
|
+
> 如果使用 vue2.7,可参考 demos => [vue-demo](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/tree/master/demos/vue-demo)
|
|
123
|
+
|
|
124
|
+
> 如果使用 vue2.6,可参考 demos => [with-vue2.6](https://github.com/Ezviz-OpenBiz/EZUIKit-JavaScript-npm/tree/master/demos/with-vue2.6)
|
|
125
|
+
|
|
120
126
|
#### tips
|
|
121
127
|
|
|
122
128
|
为方便开发者快速接入
|