readable property
ReadableStream
get
readable
The readable
read-only property of the RTCRtpScriptTransformer
interface returns a ReadableStream instance is a source for encoded
media frames.
When the corresponding RTCRtpScriptTransform is inserted into the WebRTC sender and receiver pipelines, this stream may be enqueued with outgoing or incoming encoded media frames (RTCEncodedVideoFrame or RTCEncodedAudioFrame). A WebRTC encoded transform can read the frames, modify them as needed, and then send them back into the WebRTC pipeline by writing them to RTCRtpScriptTransformer.writable. A common way to perform this operation is to pipe the frames through a TransformStream.
Implementation
external ReadableStream get readable;