- From: Jan-Ivar Bruaroey via GitHub <sysbot+gh@w3.org>
- Date: Mon, 30 Sep 2024 18:44:02 +0000
- To: public-webrtc-logs@w3.org
This can be feature detected on main [like this](https://jsfiddle.net/jib1/92r6h0qn/): ```js function isMstTransferable() { try { const [track] = document.createElement('canvas').captureStream().getVideoTracks(); new MessageChannel().port1.postMessage(track, [track]); return true; } catch (e) { if (e.name != "DataCloneError") throw e; return false; } } ``` -- GitHub Notification of comment by jan-ivar Please view or discuss this issue at https://github.com/w3c/mediacapture-transform/issues/113#issuecomment-2383916093 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Monday, 30 September 2024 18:44:03 UTC