twilio-video 2.28.1 → 2.29.0-preview.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 +10 -0
- package/README.md +4 -0
- package/dist/twilio-video.js +291 -207
- package/dist/twilio-video.min.js +21 -21
- package/es5/media/track/capturevideoframes.js +71 -0
- package/es5/media/track/capturevideoframes.js.map +1 -0
- package/es5/media/track/videotrack.js +41 -31
- package/es5/media/track/videotrack.js.map +1 -1
- package/lib/media/track/capturevideoframes.js +68 -0
- package/lib/media/track/videotrack.js +63 -35
- 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,16 @@ 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-preview.1 (August 13, 2024)
|
|
6
|
+
==================================
|
|
7
|
+
|
|
8
|
+
Changes
|
|
9
|
+
-------
|
|
10
|
+
|
|
11
|
+
- `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`.
|
|
12
|
+
- `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`.
|
|
13
|
+
- Patched the build script to work around the issue: https://github.com/markdown-it/linkify-it/issues/111.
|
|
14
|
+
|
|
5
15
|
2.28.1 (October 3, 2023)
|
|
6
16
|
========================
|
|
7
17
|
|
package/README.md
CHANGED
|
@@ -3,6 +3,10 @@ twilio-video.js
|
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/twilio-video) [](https://circleci.com/gh/twilio/twilio-video.js/tree/master)
|
|
5
5
|
|
|
6
|
+
> [!WARNING]
|
|
7
|
+
> We are no longer allowing new customers to onboard to Twilio Video. Effective **December 5th, 2026**, Twilio Video will End of Life (EOL) and will cease to function for all customers. Customers may transition to any video provider they choose, however, we are recommending customers migrate to the Zoom Video SDK and we have prepared a [Migration Guide](https://developers.zoom.us/docs/video-sdk/twilio/). Additional information on this EOL is available in our Help Center [here](https://help.twilio.com/articles/24158233644443-Programmable-Video-End-of-Life-Extension).
|
|
8
|
+
|
|
9
|
+
|
|
6
10
|
twilio-video.js allows you to add real-time voice and video to your web apps.
|
|
7
11
|
|
|
8
12
|
* [API Docs](//sdk.twilio.com/js/video/latest/docs)
|