Note: This feature is available in Dedicated Web Workers.
The clone() method of the VideoFrame interface creates a new VideoFrame object referencing the same media resource as the original.
clone()None.
A new cloned VideoFrame object.
InvalidStateError DOMExceptionThrown if the VideoFrame object has been transferred.
The following example clones a copy of VideoFrame as videoFrame2.
let videoFrame2 = VideoFrame.clone();