2021-03-09 12:30:14 +01:00

3.3 KiB

License badge Documentation Status Docker badge Support badge

openvidu-internet-explorer

IE support is a paid feature. Please, contact OpenVidu team through https://openvidu.io/commercial if you are interested

This is an adaptation of openvidu-insecure-js application with all necessary changes to work fine on IE 11.

OpenVidu Team has been able to bring complete, standards-compliant WebRTC funcionality to Microsoft Internet Explorer desktop browser (v 11). This feature has been released thanks to Temasys WebRTC Plugin.

To use this tutorial you should follow the next steps:

  1. Clone the repo
git clone https://github.com/OpenVidu/openvidu-tutorials.git
  1. You will need an http web server installed in your development computer to execute the tutorial. If you have node.js installed, you can use http-server to serve application files. It can be installed with:
sudo npm install -g http-server
  1. Run openvidu-server as it says here

  2. Start the tutorial

http-server openvidu-tutorials/openvidu-internet-explorer/web
  1. Go to localhost:8080 to test the app once the server is running. The first time you use the docker container, an alert message will suggest you accept the self-signed certificate of openvidu-server when you first try to join a video-call. If you have problems accepting the certificate you can connect through 127.0.0.1 instead of localhost.

First time you use this application openvidu-internet-explorer with Internet Explorer, openvidu-browser will present an alert which will allow you to install the Temasys WebTTC plugin. Once the plugin has been installed, your browser is ready to work with OpenVidu.

Internet Explorer (IE) is a highly restrictive browser so we have had several stones on the way. One of these stones has been to get access to client's media devices. IE does not allow to access our webcam more than once, so you won't be able to test the app between two different IE tabs. And, of course, you cannot access the same camera with two different browsers.

Another restriction is the ECMAScript version. IE does not fully support a ECMAScript version upper than 5 so this tutorial has been developed with ECMAScript 5. This means that JavaScript code won't have promises and other modern JavaScript features.