ezuikit-flv 2.1.0 → 2.1.1

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## v2.1.1 (2026-03-03)
2
+
3
+ ### Fixed
4
+
5
+ - 修复初始化 `scaleMode` 为 0 时, 不生效问题
6
+
1
7
  ## v2.1.0 (2026-01-22)
2
8
 
3
9
  ### Feat
package/README.md CHANGED
@@ -33,6 +33,7 @@ const player = new EzuikitFlv({
33
33
  id: "id", // support element id
34
34
  decoder: "decoder.js", // 自定义解码库加载地址, 默认放置在服务器根目录下
35
35
  autoPlay: true,
36
+ // downloadRecord: true, // 默认为 true, 录制完成后会自动下载, 设置为 false 后, 需要用户手动处理录制文件
36
37
  // themeData: null // 忽略主题
37
38
  });
38
39
 
@@ -53,6 +54,7 @@ const player = new EzuikitFlv({
53
54
  id: "container-id", // support element id or element
54
55
  decoder: "decoder.js", // 自定义解码库加载地址, 默认放置在服务器根目录下
55
56
  autoPlay: true,
57
+ // downloadRecord: true, // 默认为 true, 录制完成后会自动下载, 设置为 false 后, 需要用户手动处理录制文件
56
58
  // themeData: null // 忽略主题
57
59
  });
58
60
 
package/decoder.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  *
3
- * decoder.js v2.1.0
4
- * Copyright (c) 2026-1-22 Ezviz-OpenBiz
3
+ * decoder.js v2.1.1
4
+ * Copyright (c) 2026-3-3 Ezviz-OpenBiz
5
5
  *
6
6
  * https://github.com/Ezviz-OpenBiz/EZUIKit-flv
7
7
  *