WebApp using webRTC for cross-platform videochat in iOS Browser and Android Chrome

后端 未结 3 1038
误落风尘
误落风尘 2020-12-14 13:14

We are trying to build a webapp for videochat that will run in a browser across platforms (desktop, iOS, Android).

At this time we are not aware of how to run webRTC

3条回答
  •  情话喂你
    2020-12-14 13:58

    • [update February 2017] - It looks like webrtc arrival in the apple world is imminent. All the code is here and the integration in progress. Expect some part of the API for H1 2017.
    • Apple policy forces other browser to use their version of webkit which does not support webRTC, so you will not have webRTC support in a web app on iOS anytime soon. Activity in webkit hints as a change, but time for this to land, it will be months.
    • webRTC is only an API but in its open source implementation (webrtc.org) you also have a full application (appRTC) with the infrastructure, a web client, android client and iOS client. The last two are called "appRTCDemo". The feature of the iOS one are not yet at parity with the web client and android client, but it's getting There. Disclaimer: I belong to one of the company that contribute the open source code, especially the iOS part.
    • There are lots of SDK out there that can help you with cross platform / os / browser support. Some are flash based (add live), some are proprietary and suppose that you use their infrastructure (tokbox), some are free without movie support (peerjs), some are free for the web client and the infrastructure, but you have to pay for the movie SDK (easyRTC). I guess all of those could due of interest to you. You can see a non exhaustive list of webRTC vendors here and query it depending on what you want: http://webrtchacks.com/vendor-directory/

提交回复
热议问题