Intel® Collaboration Suite for WebRTC
Community support and discussions on the Intel® Collaboration Suite for WebRTC (Intel® CS for WebRTC).

How to set resolutions for video camera with the Javascript SDK

Zhen_L_
Beginner
239 Views

Woogeen.LocalStream.create({

    video: {

        device: 'camera',

        resolution: 'vga',

        frameRate: 25

    },

    audio: true

}

This creates a video stream with 640px width and 480px height.

 

I wish to have 480 width and 640px height. Is it possible? I need to do this so that the stream can be easily fitted on a phone screen. But how do I reverse the width and height of VGA?

0 Kudos
1 Reply
Jianjun_Z_Intel
Employee
239 Views

Hi Zhen,

Please try to use an object instead of a string for resolution. The object has two properties: width and height. In your case, it could be something like {width: 480, height: 640}.

This is not mentioned in the API reference guide. So it is not fully tested. But I hope it works for you.

0 Kudos
Reply