@stream-io/video-filters-web 0.5.0 → 0.5.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 +6 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/VirtualBackground.ts +1 -1
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.5.
|
|
1562
|
+
const version = "0.5.1";
|
|
1563
1563
|
const packageName = "@stream-io/video-filters-web";
|
|
1564
1564
|
|
|
1565
1565
|
// @ts-expect-error - module is not declared
|
|
@@ -2522,7 +2522,7 @@ class VirtualBackground {
|
|
|
2522
2522
|
const signal = this.abortController.signal;
|
|
2523
2523
|
readable
|
|
2524
2524
|
.pipeThrough(transformStream, { signal })
|
|
2525
|
-
.pipeTo(writable)
|
|
2525
|
+
.pipeTo(writable, { signal })
|
|
2526
2526
|
.catch((e) => {
|
|
2527
2527
|
if (e.name !== 'AbortError') {
|
|
2528
2528
|
console.error('[virtual-background] Error processing track:', e);
|