diff --git a/bigbluebutton-html5/imports/ui/components/video-provider/service.js b/bigbluebutton-html5/imports/ui/components/video-provider/service.js
index c613fd660a34335b81be2f908d47886a3185a03a..0e4eb45438283484ceb1ed6593f5562ff5c99d9c 100755
--- a/bigbluebutton-html5/imports/ui/components/video-provider/service.js
+++ b/bigbluebutton-html5/imports/ui/components/video-provider/service.js
@@ -41,7 +41,10 @@ class VideoService {
     this.numberOfDevices = 0;
 
     this.updateNumberOfDevices = this.updateNumberOfDevices.bind(this);
-    navigator.mediaDevices.ondevicechange = (event) => this.updateNumberOfDevices();
+    // Safari doesn't support ondevicechange
+    if (!this.isSafari) {
+      navigator.mediaDevices.ondevicechange = (event) => this.updateNumberOfDevices();
+    }
     this.updateNumberOfDevices();
   }