twilio-video 2.28.1 → 2.29.0-beta.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 +26 -0
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/dist/twilio-video.js +292 -209
- package/dist/twilio-video.min.js +22 -22
- package/es5/media/track/capturevideoframes.js +71 -0
- package/es5/media/track/capturevideoframes.js.map +1 -0
- package/es5/media/track/videotrack.js +33 -31
- package/es5/media/track/videotrack.js.map +1 -1
- package/es5/signaling/localtrackpublication.js +8 -1
- package/es5/signaling/localtrackpublication.js.map +1 -1
- package/lib/media/track/capturevideoframes.js +68 -0
- package/lib/media/track/videotrack.js +52 -35
- package/lib/signaling/localtrackpublication.js +9 -1
- package/package.json +4 -2
- package/tsdef/VideoProcessor.d.ts +9 -1
- package/tsdef/types.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@ The Twilio Programmable Video SDKs use [Semantic Versioning](http://www.semver.o
|
|
|
2
2
|
|
|
3
3
|
**Version 1.x reached End of Life on September 8th, 2021.** See the changelog entry [here](https://www.twilio.com/changelog/end-of-life-complete-for-unsupported-versions-of-the-programmable-video-sdk). Support for the 1.x version ended on December 4th, 2020.
|
|
4
4
|
|
|
5
|
+
2.29.0-beta.1 (December 4, 2024)
|
|
6
|
+
================================
|
|
7
|
+
|
|
8
|
+
Changes
|
|
9
|
+
-------
|
|
10
|
+
|
|
11
|
+
- `AddProcessorOptions.outputFrameBufferContextType = 'bitmaprenderer'` is now supported on Safari and Firefox. (VBLOCKS-3643, VBLOCKS-3644)
|
|
12
|
+
|
|
13
|
+
2.29.0-preview.1 (August 13, 2024)
|
|
14
|
+
==================================
|
|
15
|
+
|
|
16
|
+
Changes
|
|
17
|
+
-------
|
|
18
|
+
|
|
19
|
+
- `AddProcessorOptions.inputFrameBufferType` now has a new value `videoframe`. On browsers that support [`VideoFrame`](https://developer.mozilla.org/en-US/docs/Web/API/VideoFrame), the `inputFrameBuffer` argument of [`VideoProcessor.processFrame()`](https://twilio.github.io/twilio-video-processors.js/classes/VirtualBackgroundProcessor.html#processFrame) will be a `VideoFrame`. On other supported browsers, it will be an `HTMLVideoElement`.
|
|
20
|
+
- `AddProcessorOptions.outputFrameBufferContextType` now has a new value `bitmaprenderer`. Currently, this is only **supported for Chromium-based browsers**. On other supported browsers, it falls back to `2d`.
|
|
21
|
+
- Patched the build script to work around the issue: https://github.com/markdown-it/linkify-it/issues/111.
|
|
22
|
+
|
|
23
|
+
2.28.2 (November 22, 2024)
|
|
24
|
+
==========================
|
|
25
|
+
|
|
26
|
+
Bug Fixes
|
|
27
|
+
---------
|
|
28
|
+
|
|
29
|
+
- Fixed a bug in Desktop Safari 18 and all iOS browsers on iOS 18 where cloning a disabled `MediaStreamTrack` would incorrectly set the `enabled` property to `true` instead of preserving the original disabled state. This ensures track cloning behavior matches the MediaStreamTrack specification and works consistently across browsers. Bug report: https://bugs.webkit.org/show_bug.cgi?id=281758
|
|
30
|
+
|
|
5
31
|
2.28.1 (October 3, 2023)
|
|
6
32
|
========================
|
|
7
33
|
|
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ Releases of twilio-video.js are hosted on a CDN, and you can include these
|
|
|
74
74
|
directly in your web app using a <script> tag.
|
|
75
75
|
|
|
76
76
|
```html
|
|
77
|
-
<script src="//sdk.twilio.com/js/video/releases/2.28.
|
|
77
|
+
<script src="//sdk.twilio.com/js/video/releases/2.28.2/twilio-video.min.js"></script>
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
Using this method, twilio-video.js will set a browser global:
|