This relates to the videoroom demo:
Would anyone have any idea why when I use the following url to use subscriber mode only it works with firefox but does not show any remote video in chrome. It will show the bitrate changing but it will not show the video in chrome. In firefox the video shows and the bitrate is updating but in chrome only the bitrate updates and no video is displayed.
URL example:
https://myebsite.com/html/videoroomtest.html?room=1234&subscriber-mode=true
I did verify in both browsers that this code in videoroomtest.html is executing properly and it is bypassing (not falling into the else statement where) publishOwnFeed(true)
if(subscriber_mode) {
$(‘#videojoin’).hide();
$(‘#videos’).removeClass(‘hide’).show();
} else {
publishOwnFeed(true);
}