@stream-io/video-filters-web 0.6.0 → 0.7.0
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 +6 -0
- package/dist/index.cjs.js +7 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7 -7
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/types.ts +6 -6
package/dist/index.es.js
CHANGED
|
@@ -1559,7 +1559,7 @@ const createTFLiteSIMDModule = (__Module) => {
|
|
|
1559
1559
|
return __Module.ready;
|
|
1560
1560
|
};
|
|
1561
1561
|
|
|
1562
|
-
const version = "0.
|
|
1562
|
+
const version = "0.7.0";
|
|
1563
1563
|
const packageName = "@stream-io/video-filters-web";
|
|
1564
1564
|
|
|
1565
1565
|
// @ts-expect-error - module is not declared
|
|
@@ -1602,16 +1602,16 @@ const loadMediaPipe = async (options = {}) => {
|
|
|
1602
1602
|
|
|
1603
1603
|
const BACKGROUND_BLUR_MAP = {
|
|
1604
1604
|
low: {
|
|
1605
|
-
bgBlur:
|
|
1606
|
-
bgBlurRadius:
|
|
1605
|
+
bgBlur: 5,
|
|
1606
|
+
bgBlurRadius: 3,
|
|
1607
1607
|
},
|
|
1608
1608
|
medium: {
|
|
1609
|
-
bgBlur:
|
|
1610
|
-
bgBlurRadius:
|
|
1609
|
+
bgBlur: 15,
|
|
1610
|
+
bgBlurRadius: 4,
|
|
1611
1611
|
},
|
|
1612
1612
|
high: {
|
|
1613
|
-
bgBlur:
|
|
1614
|
-
bgBlurRadius:
|
|
1613
|
+
bgBlur: 30,
|
|
1614
|
+
bgBlurRadius: 5,
|
|
1615
1615
|
},
|
|
1616
1616
|
};
|
|
1617
1617
|
|