Screen Share on does not load the video

Max

Administrator
Staff member
Good day.
We have reproduced this issue in latest Chrome official build 74.0.3729.157 and will check to fix it.
As workaround, since Chrome 74 you can share screen without Chrome extension, please, enable switch "W/o extension" and check. This feature is described here in details.
 

Azhar Ali

Member
Thanks for looking.

Any idea when this can be fixed? I have tried the workaround but the quality of the streams drop alot and unexpected jitteriness is experiences by the viewer
 

Max

Administrator
Staff member
Good day.
Any idea when this can be fixed?
We work on it and let you know here.
the quality of the streams drop alot and unexpected jitteriness is experiences by the viewer
This is because Chrome browser ignores video constrains when extension is not used, so it streams a high resolution picture (with real desktop or windows resolution) through a channel that may be not enough for this.
 

Max

Administrator
Staff member
Hello
Try to replace

Code:
frameRate: {max: parseInt($('#fps').val())}
with
Code:
frameRate: parseInt($('#fps').val())
It works for us in screen-sharing.js example
 
Top