Video Resolution 16:9 not 4:3

Hello!

We are facing an issue regarding video quality and size.
How to adjust to webcam and desktop sharing be forced to use 16:9 not 4:3?

Regards,
Rafael
 

Max

Administrator
Staff member
Good day.
You can use constraints to explicitly set video publishing resolution
JavaScript:
session.createStream({name:"stream1", constraints:{audio:true, video:{width:640,height:360).publish();
Please also read this page for details (based on Media Devices example)
Note that screen sharing resolution can be changed only if Chrome extension is used.
Beware of Safari resolution constraint issue.
 
Top