Does webKit in iOS 11 (Beta) support WebRTC?

前端 未结 3 1740
隐瞒了意图╮
隐瞒了意图╮ 2020-12-05 07:32

I have a URL that is working fine with Safari on iOS11 (Beta) Audio/Video is working fine. But when I load this URL with WKWebView it gives me an error \"Incompatible Brow

相关标签:
3条回答
  • 2020-12-05 08:05

    I have done some tests with iOS Beta 4 and it seems that even WKWebview nor UIWebview don't support getUserMedia as a WebRTC API.

    Can someone confirm this?

    0 讨论(0)
  • 2020-12-05 08:24

    Since iOS11,

    WebRTC is partially supported in WKWebView,
    and fully supported in the Safari App browser.


    Explained:

    WebRTC has three main JavaScript APIs:

    • MediaStream (aka getUserMedia)
    • RTCPeerConnection
    • RTCDataChannel

    For apps running inside Safari App, iOS11+, all WebRTC APIs are supported. That includes getUserMedia. Be sure to use adapter.js library for best compatibility, since each browser - including Safari - uses a different name for its implementation. For example, in Safari it's navigator.mediaDevices.getUserMedia().

    But, when using WKWebView or SFSafariViewController, it's a different story:

    • Both RTCPeerConnection and RTCDataChannel are supported and working.
    • getUserMedia is not supported yet, for "security reasons". It most probably won't be available before the next major OS release, which would be iOS 12 in September 2018.

    You can still stream video & audio from local storage or consume live media captured by a peer. Hopefully in iOS 12 we'll see some progress...

    0 讨论(0)
  • 2020-12-05 08:30

    I did a bit of digging in the WebKit sources last night, and it looks like the WebRTC/MediaCapture stuff is all gated behind a preference that's only accessible via a private API. There was also a commit that mentioned something about apps needing to handle all the setup for A/V permissions.

    In any case, the result is that getUserMedia doesn't work in WKWebView, even on iOS11 (beta 4, at least) :(

    I've filed a radar (rdar://33571214 and http://www.openradar.me/33571214) and encourage everyone else to do the same.

    0 讨论(0)
提交回复
热议问题