-
Notifications
You must be signed in to change notification settings - Fork 22.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FF130 Relnote WebCodec API - Desktop support #35711
FF130 Relnote WebCodec API - Desktop support #35711
Conversation
@@ -45,6 +45,7 @@ This article provides information about the changes in Firefox 130 that affect d | |||
### APIs | |||
|
|||
- The [X25519](/en-US/docs/Web/API/SubtleCrypto/deriveKey#x25519) digital signature algorithm is supported by the [Web Crypto API](/en-US/docs/Web/API/Web_Crypto_API), and can be used in the {{domxref("SubtleCrypto")}} methods: {{domxref("SubtleCrypto.deriveKey()", "deriveKey()")}}, {{domxref("SubtleCrypto.deriveBits()", "deriveBits()")}}, {{domxref("SubtleCrypto.generateKey()", "generateKey()")}}, {{domxref("SubtleCrypto.importKey()", "importKey()")}} and {{domxref("SubtleCrypto.exportKey()", "exportKey()")}} ([Firefox bug 1904836](https://bugzil.la/1904836)). | |||
- The [Web Codecs API](/en-US/docs/Web/API/WebCodecs_API) is supported on desktop releases, giving web developers low-level access to the individual frames of a video stream and chunks of audio (Android releases are supported in Nightly builds). The new interfaces include: [`VideoEncoder`](/en-US/docs/Web/API/VideoEncoder), [`VideoDecoder`](/en-US/docs/Web/API/VideoDecoder), [`EncodedVideoChunk`](/en-US/docs/Web/API/EncodedVideoChunk), [`VideoFrame`](/en-US/docs/Web/API/VideoFrame), and [`VideoColorSpace`](/en-US/docs/Web/API/VideoColorSpace). ([Firefox bug 1908572](https://bugzil.la/1908572)). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's the revision for the flag changes for future us: https://hg.mozilla.org/releases/mozilla-beta/rev/98cd453d97c8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with one suggestion for you to look at! Thank you 🙏🏻
@hamishwillee @bsmth Please edit the first paragraph of |
@toothlessgodzilla The release docs update on release is handled by a different process. This will be updated shortly. |
This is done in: |
Co-authored-by: Brian Thomas Smith <brian@smith.berlin>
Thanks @bsmth - accepted your nit and merged |
FF130 supports the WebCodecs API on desktop builds only. The API is supported on nightly for android. See https://bugzilla.mozilla.org/show_bug.cgi?id=1908572
This adds a release note and experimental features update.
Related docs can be tracked in #35695