From 327508aa0d51ca2509613e94450740acca4bdde6 Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Wed, 27 Nov 2019 13:56:55 -0500 Subject: [PATCH] Prevent video dropout with audioFallbackEnabled set to false --- screenshare/src/screenshareApp.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/screenshare/src/screenshareApp.js b/screenshare/src/screenshareApp.js index 1cdc392fb6..b16f5ca993 100644 --- a/screenshare/src/screenshareApp.js +++ b/screenshare/src/screenshareApp.js @@ -258,11 +258,15 @@ var publisher; function startTokboxPublisher(stream) { publisher = document.createElement("div"); var publisherOptions = { - videoSource: stream.getVideoTracks()[0], + audioFallbackEnabled: false, audioSource: null, + fitMode: 'contain', + frameRate: 30, + height: 720, insertMode: 'append', - width: 1280, - height: 720 + publishAudio: false, + videoSource: stream.getVideoTracks()[0], + width: 1280 }; publisher = OT.initPublisher(publisher, publisherOptions, function(error){