Get to know MDN better
Since October 2025, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The RTCRtpScriptTransform() constructor creates a new RTCRtpScriptTransform object.
Constructing the RTCRtpScriptTransform creates a counterpart RTCRtpScriptTransformer in the specified worker, along with passed options (if any). Objects in the third parameter to the constructor are transferred.
The rtctransform event is then fired at the worker global object. Worker code can use the event.transformer property to get the counterpart RTCRtpScriptTransformer, and event.transformer.options is used to get the options.
Note that the options are primarily used to inform the worker whether the transformer is processing incoming or outgoing frames, so that it can apply an appropriate transform.
A Worker, which will define code for one or more WebRTC transform streams.
options OptionalAn arbitrary object that will be made available in the worker. This is most commonly used to inform the worker whether it injected into the WebRTC sender or receiver pipeline, and hence which transform should be applied. However it may also be used to send any other object, such as a MessagePort for communicating dynamically with the transformer.
transfer OptionalAn optional array of transferable objects that will be transferred to the worker. After transfer, these objects are unusable in the main thread.
Thrown if an object in transfer cannot be transferred.
The first example below shows construction of a RTCRtpScriptTransform that is then assigned to a RTCRtpSender.transform. The constructor takes an optional object with the property name and senderTransform. The worker can use this option to understand when it is transforming encoded frames from the encoder (rather than incoming frames from the packetizer).
Any property name and value can be used in the options, as long as they can be serialized (and transferred if specified in the last constructor parameter). The code below transfers the second port of a MessageChannel to the worker, which we might do in order to dynamically update transform code with (say) a new encryption key.
| WebRTC Encoded Transform # dom-rtcrtpscripttransform-rtcrtpscripttransform |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Sep 8, 2023 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.